|
POST
|
I believe we're going to just implement a simple map viewer JavaScript app to embed. I had hoped to utilize the WAB framework so that we don't have to re-invent functionality, but will just have to try to keep things as simple as possible in order to reduce code that has to be managed.
... View more
12-10-2018
07:21 AM
|
1
|
0
|
1524
|
|
POST
|
Has anyone attempted cross-domain control through an iFrame with easyXDM? https://github.com/oyvindkinsey/easyXDM#readme
... View more
12-05-2018
12:56 PM
|
0
|
2
|
1524
|
|
POST
|
In the GIS group here we're somewhat committed to deploying mapping products standardized on WAB Developer apps using the Launchpad Theme and so we'd like to work within that framework if possible, keeping any custom coding limited to custom widgets. For our next implementation, I believe the idea is to embed a WAB we build into another page with the main application as "the product" that is implemented and branded. With that said, the request is for the controls on that page to interact with the map/WAB application, hence the reason for this post. My constraint/requirement: The page our WAB is embedded into contains the user controls, NOT the widget. So...Is it possible for a custom widget in that embedded WAB to receive communication from controls on the page the WAB is embedded and perform the desired processing? Scenario: a text box control and a button are the page's main controls that the user would type in a name value. Clicking the button would initiate a query/zoom to specific features of the map service(s) found in the WAB app using the methods/functions programmed in the widget.
... View more
12-05-2018
09:25 AM
|
0
|
5
|
1619
|
|
POST
|
Katie, You are showing two different ways url parameters are setup and defined. That is exactly the problem! Your first link shows the clean approach "parcel=<some value", then you show that wonky "&feature=FireHydrants_3792;<search column>;<search value>". I understand both of these but I need to standardize this url parameter search for the embedded map product. Because the Minimalist app can only configure ONE custom url search parameter in one format, then switch to using "&feature=" as another format completely defeats the purpose of considering embedding the Minimalist app. I would rather just have an embedded web map and use a single url search parameter format because the page that this is embedded is setting the values to search on. Also consider we have dev/test/production embedded products that are managed, so just sticking with embedded web maps rather than an additional wab will reduce items that need to be managed by half. Is that what you are looking for or is that what you are saying breaks across environments? Consider this: FireHydrants_3792 will be different across dev/test/prod items that will be embedded. FireHydrants_0001, FireHydrants_0002, FireHydrants_0003 Multiple search layers will be configured not just FireHydrants_3792. Layer2_0001, Layer3_0001, Layer4_0001, Layer5_0001 You can see how messy this can get as all of those url parameters and then have non-GIS developers who are embedding this item and dynamically setting parameter search values. This is why I hoped to use the minimalist WAB app to simplify because the url parameter is simple: &<layername>=<somevalue> I'll likely just go back to a web map product instead because it will reduce the number of items that will need to be managed.
... View more
10-25-2018
07:41 AM
|
0
|
0
|
2023
|
|
POST
|
Is your intent to embed a link in your website that will open the app zoomed in to a specific feature? Yes but the entire app is embedded into the website, not just a link. As that page loads, the embedded Web AppBuilder app should zoom to the specific feature onLoad and is the reason why I need to setup a Custom Url Parameter. This works just fine with a single url parameter search configured! My question in the OP is if I can configure an additional url parameter search on a different layer/map service. I can do this if I embed a regular web map viewer with multiple search layers configured, but the way you must configure the url parameter is strange and prone to break across dev/test/production products (see Kelly's reply in THIS thread) Or do you want the end users to be able to type a value into the search box that could be in any layer and get a result? No, the search is performed onLoad of the map using url parameters. Thanks!
... View more
10-24-2018
05:53 AM
|
0
|
2
|
2023
|
|
POST
|
Yes, I'm describing the Minimalist template for the hosted web Web AppBuilder. If you are using the minimalist template you can configure multiple search layers under the search tab Yes, I understand but we're not using that type of search function. We are embedding this app into another page and performing the search via url parameter when it opens using the "Custom Url Parameters" setup. My question is, how can I setup multiple search parameters for the different search layers configured on the web map source to this WAB.
... View more
10-23-2018
05:43 AM
|
0
|
4
|
2023
|
|
POST
|
We've run into a design challenge for implementing an embedded map product into an existing webpage. Originally, I had a webmap viewer with search configured on each of the layers/services loaded in it. Since then we had migrated to instead use the Minimialist WAB template because of the way the webmap viewer requires url parameters to perform searches onLoad of the embedded map. Now we are faced with the problem of configuring multiple search layers on the Minimalist template. That is, using the WAB builder online, I can only configure 1 search layer parameter. Is there a solution or workaround to configure more search layers? Is there anything in the JSON of hosted WAB app I can fudge in order to get this to work?
... View more
10-22-2018
11:33 AM
|
0
|
8
|
2205
|
|
DOC
|
Interesting. I'll take another look before bothering.
... View more
10-16-2018
05:41 AM
|
0
|
0
|
14799
|
|
DOC
|
Correct. It seems that the feature service downloads the data with the query applied, but all of the attachments are being pulled down rather than only the related ones.
... View more
10-16-2018
05:16 AM
|
0
|
0
|
14799
|
|
POST
|
Oh, I think my problem was an incorrect WKID value on the spatial reference set for one of the stops I had listed.
... View more
10-15-2018
08:33 AM
|
0
|
0
|
1198
|
|
POST
|
Could you post your solution? I'm struggling with this same issue.
... View more
10-15-2018
08:17 AM
|
0
|
0
|
1198
|
|
DOC
|
What do you recommend to do if the hosted FS has over 1gb of attachments? We'd like to only pull down after a specific "CreateDate" but any modifications to the .py source we've attempted has failed due to issues with GlobalId values between the parent feature and child attachment.
... View more
10-11-2018
07:47 AM
|
0
|
0
|
14799
|
|
POST
|
I had a similarly "fuzzy" response when I got the question, I had a hunch that [0] is an index position but not exactly sure to what. Note! there is no ….. blah = CreateFeatureclass I am able to reference facFC var on the next line in order to add a field: facFC = arcpy.CreateFeatureclass_management("in_memory", "facFC", "POINT")[0]
arcpy.AddField_management(facFC, "NAME", "TEXT", None, None, 40, "", "NULLABLE", "NON_REQUIRED") Thank you for the response!
... View more
10-10-2018
01:56 PM
|
0
|
2
|
4715
|
|
POST
|
I was asked about a seemingly simple line of code in one of my scripts and I didn't have an immediate answer. After a few pages of g-search, I'm still a bit stumped, but not afraid to ask for the answer! facFC = arcpy.CreateFeatureclass_management("in_memory", "facFC", "POINT")[0] What exactly is the [0] at the end of this statement for? There's examples of having it there and other examples it's not found. Thanks!
... View more
10-10-2018
01:31 PM
|
0
|
6
|
5425
|
|
POST
|
I was close, you nailed the complete solution --- I was not correctly setting the "data" variable and get it under the "junctionMatrix" attribute. Pretty simple misunderstanding on my part! Thanks again.
... View more
10-09-2018
11:31 AM
|
0
|
0
|
1977
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-17-2020 10:47 AM | |
| 1 | 10-25-2022 11:46 AM | |
| 1 | 08-08-2022 01:40 PM | |
| 1 | 02-15-2019 08:21 AM | |
| 2 | 08-14-2023 07:14 AM |
| Online Status |
Offline
|
| Date Last Visited |
01-22-2025
02:28 PM
|