|
BLOG
|
Jianxia, any updates on the graphic you posted last March listing the widgets planned to be included in future ExB versions in 2021. Thanks.
... View more
08-25-2021
09:12 AM
|
1
|
0
|
16439
|
|
POST
|
Is there a way to allow the users to drag modal across the screen? I tried with the inline css but no success.
... View more
08-23-2021
02:43 PM
|
0
|
2
|
2035
|
|
POST
|
Yes you can. Sign up as ArcGIS developer at https://developers.arcgis.com and then you can get an api key. see: https://developers.arcgis.com/documentation/mapping-apis-and-services/get-started/
... View more
08-18-2021
02:52 PM
|
0
|
1
|
1281
|
|
POST
|
You can do this in the WAB developer version, but WAB in portal doesn't allow custom widgets.
... View more
08-17-2021
11:24 AM
|
0
|
0
|
869
|
|
POST
|
Did you try the screening widget? You can specify which fields to include in the report from one or more layers.
... View more
08-15-2021
04:27 PM
|
0
|
0
|
1937
|
|
POST
|
I see the example for tabs in the components. It is a two-level tabs https://esri.github.io/calcite-components/?path=/story/components-tabs--simple Is there a way to define another level of tabs like this? Thanks. link to image
... View more
08-11-2021
03:49 PM
|
0
|
8
|
3677
|
|
POST
|
Use the center of the screen as the coordinates of your graphic. var x = window.innerWidth / 2;
var y = window.innerHeight / 2;
... View more
08-09-2021
09:33 PM
|
0
|
1
|
2623
|
|
POST
|
How do you insert a link in a calsite-dropdown-item? I tried this: <calcite-dropdown-item>
<calcite-link href="https://cnn.com" target="_blank">Link text</calcite-link>
</calcite-dropdown-item> and <calcite-dropdown-item>
<a href="https://cnn.com" target="_blank">Link text</a>
</calcite-dropdown-item> The mouse works but you cannot click on the link by using the keyboard.
... View more
08-09-2021
12:28 PM
|
0
|
2
|
1589
|
|
IDEA
|
Owen thank you for providing the link "Customizing your StoryMap’s URL (esri.com)" but the main reason for the idea is to host out custom StoryMap app on our servers. Why not providing a developer's version like the WAB or ExB?
... View more
08-09-2021
08:46 AM
|
0
|
0
|
3966
|
|
POST
|
I just use basic js. Below is a small sample of how I read the url parameters and process... So just grab your parameters from url (.../index.html?param1=xx¶m2?=yy....) and do your query. This is a code in one of my custom widgets in WAB. So you will see use of this. Another option is to use node.js. PS. I posted the code using the "insert code sample" and it looks good on preview. Don't know why when it's posted it shows with no formatting. Sorry. urlSubstring = location.search;
console.log(urlSubstring)
if (urlSubstring.includes("?")) {
this.geturl(urlSubstring);
}
-------
------
geturl: function (urlSubstring) {
urlSubstring = location.search.substring(1);
if (urlSubstring.indexOf("?") > 0) {
var myparams1 = urlSubstring.split('?');
urlSubstring = myparams1[1];
}
if (urlSubstring) {
var params = urlSubstring.split('&');
var length = params.length;
var i;
var index;
index = -1;
for (i = 0; i < length; i++) {
var variablesPair = params[i];
if ((index = variablesPair.indexOf("=")) >= 0) {
var varReceived = variablesPair.substring(0, index);
var valueReceived = variablesPair.substring(index + 1);
if (varReceived == "apn") {
apn = valueReceived;
this.gettheParcel(apn);
}
if (varReceived == "county") {
-----
-----
... View more
07-30-2021
08:32 AM
|
1
|
0
|
2557
|
|
POST
|
So, if I want to have an icon that it produces a modal window like a basemap gallery? Tried to use, but it's not working. const homeBtn1 =new Expand({
view: view,
container: cDiv1,
content:basemapGallery
});
var basemapGallery = new BasemapGallery({
view: view
});
... View more
07-28-2021
02:09 PM
|
0
|
0
|
4820
|
|
POST
|
Hi Leslie. I have seen the same issue to a lot of of websites. I ended up performing a manual formatting which it can be time consuming process. Here is one example: https://community.esri.com/t5/arcgis-api-for-javascript-questions/create-widget-toolbar-using-dom-element-s/td-p/568359
... View more
07-28-2021
12:51 PM
|
1
|
0
|
2304
|
|
POST
|
Latest update, ESRI responded with this about the issue. https://community.esri.com/t5/community-feedback/problem-loading-blogs-with-long-scripts-in-google/m-p/1082759#M938
... View more
07-27-2021
12:08 PM
|
0
|
0
|
5778
|
|
POST
|
Robert, your screenshot is from this page. I was referring for the solution posted at this page: https://community.esri.com/t5/arcgis-api-for-javascript-questions/does-the-class-quot-esri-toolbars-navigation-quot/td-p/567061. When you scroll down it freezes, after line 91.
... View more
07-27-2021
11:46 AM
|
0
|
0
|
5779
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 06-19-2025 10:13 PM | |
| 3 | 02-06-2026 10:44 AM | |
| 1 | 01-08-2026 12:50 PM |
| Online Status |
Offline
|
| Date Last Visited |
9 hours ago
|