|
POST
|
I have 250 polylines. I have a value i calculated (all different) that needs to be added to the length of the. The values are in the attribute table. How can I increase the length of the lines using the values in the table as the distance to add to the lines?
... View more
07-18-2017
01:21 PM
|
0
|
23
|
7797
|
|
POST
|
Above is some code that will show multiple photos. Also, How would i display a PDF in the pop that is an attachment?
... View more
06-28-2017
06:37 AM
|
0
|
1
|
2258
|
|
POST
|
on(myLayer, 'click', function (e) {
map.graphics.clear();
var id;
var pminfosA = [];
id = e.graphic.attributes[artlayers.objectIdField];
artlayers.queryAttachmentInfos(id, function (infos) {
if (infos.length > 0) {
arrayUtils.map(infos, function (info) {
var popUpMediaInfo;
if (!!info.url) {
popUpMediaInfo = {};
popUpMediaInfo.type = 'image';
popUpMediaInfo.value = {};
popUpMediaInfo.value.sourceURL = info.url;
popUpMediaInfo.value.linkURL = info.url;
popUpMediaInfo.caption = info.name;
pminfosA.push(popUpMediaInfo);
}
});
var pt = new PopupTemplate({
title: "{FEATURE_NAME}",
showAttachments: false,
mediaInfos: (pminfosA)
});
e.graphic.setInfoTemplate(pt);
map.infoWindow.setFeatures([e.graphic]);
map.infoWindow.show(e.screenPoint, map.getInfoWindowAnchor(e.screenPoint));
}
else {
var pt2 = new PopupTemplate({
title: "{FEATURE_NAME}",
showAttachments: false,
description: "no images available"
});
e.graphic.setInfoTemplate(pt2);
map.infoWindow.setFeatures([e.graphic]);
map.infoWindow.show(e.screenPoint, map.getInfoWindowAnchor(e.screenPoint));
}
});
});
... View more
06-28-2017
06:36 AM
|
1
|
0
|
2258
|
|
POST
|
I am going to be making the web application from scratch
... View more
01-19-2017
12:24 PM
|
0
|
0
|
1552
|
|
POST
|
Thanks, I did read that and it makes no mention of the #. So maybe it will be ok!
... View more
01-19-2017
12:02 PM
|
0
|
4
|
1552
|
|
POST
|
Thanks. The geodatabase already has feature classes in it set up with column names that start with #. This was done a while back before i got here. Now i will be designing a web application using the tables with column names that start with the #. I was worried it might make queries act strange?
... View more
01-19-2017
11:55 AM
|
0
|
0
|
1552
|
|
POST
|
Is it bad to name a column in an SDE table with a pound sign? For example: #_Conduit or #_Feature
... View more
01-19-2017
11:35 AM
|
0
|
8
|
1912
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-16-2022 11:47 AM | |
| 1 | 06-28-2017 06:36 AM | |
| 1 | 06-23-2016 06:54 AM | |
| 1 | 03-19-2015 01:21 PM | |
| 1 | 07-20-2017 06:07 AM |
| Online Status |
Offline
|
| Date Last Visited |
08-12-2025
07:31 AM
|