|
DOC
|
@RaoulComaduran2 This widget has a full featured settings dialog for setting up your layers, there is no need to manually edit the json file. You can find the widgets help documentation here https://gis.calhouncounty.org/WAB/V2.23/widgets/eSearch/widgets/eSearch/help/eSearch_Help.htm
... View more
05-23-2022
09:55 AM
|
0
|
0
|
17709
|
|
POST
|
You are going to get an error if you do not specify the buffer distance and/or distance unit
... View more
05-20-2022
09:15 AM
|
0
|
0
|
1671
|
|
POST
|
@MarkJTurnbull This is what I am doing in one of mine. //this is inside my activeViewChangerHandler
this.state.jimuMapView.whenJimuMapViewLoaded().then(()=>{
watchUtils.whenFalseOnce(this.state.jimuMapView.view,'updating',()=>{
//do my work with url parameters here
})
})
... View more
05-20-2022
08:44 AM
|
0
|
0
|
1076
|
|
POST
|
try this: vaadin-grid-cell-content {
font-size: .575rem !important;
}
... View more
05-18-2022
11:44 AM
|
0
|
1
|
3546
|
|
POST
|
In my testing that css rule worked fine. Where are you placing this css rule? In which file?
... View more
05-18-2022
08:18 AM
|
1
|
3
|
3571
|
|
POST
|
To change the font size add this css rule to your deployed apps index.html: .esri-grid .esri-grid__content {
font-size: medium;
--lumo-font-size-s: .875rem;
} of course adjusting sizes to your liking. The font-size portion applies to the table column content and the --lumo-font-size-s pertains to the column header text.
... View more
05-18-2022
06:57 AM
|
1
|
5
|
3585
|
|
POST
|
This is how in 4.x view.on('pointer-move', (event)=>{
let point = view.toMap({x: event.x, y: event.y});
}
... View more
05-17-2022
05:23 AM
|
1
|
1
|
1663
|
|
POST
|
Sure you can easily do that inside the feature loop. hitsGPS.queryFeatures().then(results){
results.features.map(feat => {
const buffer = geometryEngine.geodesicBuffer(feat.geometry, parseInt(feat.attributes['someFieldName']), "kilometers");
bufferGraphic = new Graphic({geometry: buffer, symbol: sym});
// add graphic to map
graphicsLayer.add(bufferGraphic);
});
}
... View more
05-13-2022
12:11 PM
|
1
|
0
|
3477
|
|
POST
|
You can not call hitsGPS.geometry. HitsGPS is a featurelayer and does not have a geometry property you have to iterate over the results of a query on the featurelayer. Something like this (untested code) const sym = {
type: "simple-fill",
color: [227, 139, 79, 0.25],
style: "solid",
outline: {
color: [255, 255, 255, 255],
width: 1
}
};
hitsGPS.queryFeatures().then(results){
results.features.map(feat => {
const buffer = geometryEngine.geodesicBuffer(feat.geometry, 100, "kilometers");
bufferGraphic = new Graphic({geometry: buffer, symbol: sym});
// add graphic to map
graphicsLayer.add(bufferGraphic);
});
}
... View more
05-12-2022
11:06 AM
|
1
|
2
|
3521
|
|
DOC
|
@LindseyStone I see my issue with apostrophes now. In the widget.js replace this line criteriaFromValue = queryExpr.replace(myPattern, content[s].value.toString()); with this: criteriaFromValue = queryExpr.replace(myPattern, content[s].value.toString().replace(/'/g, "''")); Only seems to be an issue when the search is configured for "string contains"
... View more
05-11-2022
10:24 AM
|
0
|
0
|
17784
|
|
DOC
|
@LindseyStone Apostrophes should not be an issue as the eSearch will escape those when it submits the value to the search. CSV export is already an option you just need to enable it in the widgets settings. Which version of WAB and eSearch are you using?
... View more
05-11-2022
09:58 AM
|
0
|
0
|
17788
|
|
POST
|
In 4.x when you create a featurelayer (FL) from source graphics you need to query the FL to get its graphics. You are not able to just iterate of a graphics property like you use to in 3.x. To delete a feature you would need to use applyEdits on the featurelayer. const queryParams = this._labelLayer.createQuery();
queryParams.where = 'your search criteria'
this._labelLayer.queryFeatures(queryParams).then(function(results){
//now use the results that matched your criteria to delete that feature
this._labelLayer.applyEdits({deleteFeatures:results.features});
});
... View more
05-11-2022
08:29 AM
|
0
|
1
|
1553
|
|
POST
|
@DavidDas__GISP I guess you are looking for something a little more like this then: .esri-icon-non-visible::before {
content: "\e610"!important;
color: #969696 !important;
}
.esri-icon-visible::before {
content: "\e605"!important;
background-color: #00b9d0;
color: white!important;
}
... View more
05-10-2022
06:52 AM
|
1
|
0
|
5584
|
|
POST
|
@CMcDonald Sure to fix that on a deployed EB Dev site just add these css rules to the index.html. .esri-icon-non-visible::before {
content: "\e610"!important;
}
.esri-icon-visible::before {
content: "\e611"!important;
} If you are using AGOL I am not sure that this is possible.
... View more
05-09-2022
08:54 AM
|
1
|
1
|
5625
|
|
DOC
|
@RobertHendrickson_MGY Nope this widget is only for operational layers in the map not basemaps. There is no basemap toggle widget out there for WAB.
... View more
05-09-2022
08:04 AM
|
0
|
0
|
9071
|
| Title | Kudos | Posted |
|---|---|---|
| 16 | 05-17-2021 01:51 PM | |
| 1 | 07-06-2020 05:32 AM | |
| 1 | 07-10-2018 05:49 AM | |
| 9 | 01-28-2022 10:58 AM | |
| 1 | 03-28-2022 06:20 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-24-2026
05:23 AM
|