|
POST
|
Joshua yes that is a possibility. Sorry i should have mentioned that.
... View more
03-23-2017
11:20 AM
|
0
|
0
|
3896
|
|
DOC
|
Robber, I mad the changes you suggested ("thumbnailUrl" = "images/image.jpg") but i still can't see the image icon. The image Dimension is 60x60 pixels, size is 2.98 KB.
... View more
03-23-2017
09:45 AM
|
0
|
0
|
15853
|
|
POST
|
I need to find duplicates by comparing to fields. I am not sure how to accomplish this so any help would be appreciated. I have two fields that i need to compare, Account and Acres1 fields. if there is not duplicate then put a "0" in the duplicate field for that record. The end scenario i need something like this. Account Acres Duplicate
D54963 12.43 0
D54963 12.43 1 (duplicate)
D54963 12.43 2 (duplicate)
D45879 26.32 0 (no duplicate)
D45879 17.32 0 (no duplicate)
D36540 17.51 0
D36540 17.51 1 (duplicate)
D36540 17.51 2 (duplicate)
D36540 17.51 3 (duplicate) I have the following code but it only checks one field (Account) and it add a number to all attributes if there is a double not exactly what i need. import arcpy
infeature ="C:/Temp/Test_FINAL_Erase"
field_in ="Account"
field_out ="COUNT_"+field_in
#create the field for the count values
arcpy.AddField_management(infeature,field_out,"SHORT")
#creating the list with all the values in the field, including duplicates
lista=[]
cursor1=arcpy.SearchCursor(infeature)
for row in cursor1:
i=row.getValue(field_in)
lista.append(i)
del cursor1, row
#updating the count field with the number on occurrences of field_in values
#in the previously created list
cursor2=arcpy.UpdateCursor(infeature)
for row in cursor2:
i=row.getValue(field_in)
occ=lista.count(i)
row.setValue(field_out,occ)
cursor2.updateRow(row)
del cursor2, row
print ("Done.")
... View more
03-23-2017
09:43 AM
|
0
|
9
|
4766
|
|
DOC
|
Robbert sorry about posting in the Enhanced Search thread. I was able to locate where to add the image code, in the "config_Enhanced Basemap Gallery.json". I added the following code and i can see the the imagery and i can click on it and it does get added to the map. But i can't seem to get the thumbnailURL to come up, as you can see i have the Image.jpg in a folder where my application is stored. What am i doing wrong? "basemapGallery": {
"basemaps": [
{
"layers": [
{
"id": "raster_2017",
"layerType": "ArcGISTiledMapServiceLayer",
"url": "**/MapServer",
"visibility": true,
"opacity": 1,
"title": "World Imagery"
}
],
"title": "2016 Imagery",
"thumbnailUrl": "C:/inetpub/wwwroot/BuildingPermitTracker2/images/Image.jpg",
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
}
}, Thanks!
... View more
03-23-2017
08:21 AM
|
0
|
0
|
15854
|
|
DOC
|
oops my bad Robbert i thought i was in the Enhanced Basmap widget.
... View more
03-23-2017
07:51 AM
|
0
|
0
|
9246
|
|
POST
|
ya I can't print from the locallayer widget at all. My services are secure. I can print from layers that i put on a web map on ArcGIS Online with secure services(not all layers, point layers won't print for me),
... View more
03-22-2017
09:57 AM
|
0
|
4
|
4066
|
|
DOC
|
I have an app that i deployed with your Enhanced Basemap widget. I recently received some new imagery for our area and i was wondering since the application is deployed how do you add base maps to deployed applications? One other thing, is there a way to move/rearrange the basemaps in the basemap gallery widget? Thanks!
... View more
03-22-2017
09:19 AM
|
0
|
0
|
9246
|
|
POST
|
After commenting out the background-color on the common.css and launchpad.css it removed the blue circle. I did have to make changes to the .jimu-widget-header .logo hightL0px min-width: 0px in the launchpad.css and changes to the jimu-widget-header .logo hight: 0 px; width:0 px in the common.css or else there was the an outline of where the blue circle was. Thanks Robert!
... View more
03-16-2017
09:27 AM
|
0
|
0
|
2182
|
|
POST
|
I made the changes you posted but i do not see the scale at all.
... View more
03-15-2017
03:01 PM
|
0
|
1
|
2665
|
|
POST
|
I have an app that i want to remove the blue circle from the logo and keep the gray title header from moving left. I've tried to remove it by making the .claro .jimu-widget-header .logo high and width to "0" in the common.css in the app's \themes\LaunchpadTheme folder. the blue circle goes a way but the gray title header moves to the left, see attached pic. How can i accomplish this? Common.css .claro .jimu-widget-header .logo {
height: 0px !important;
width: 0px;
min-width: 50px;
background-color: #3b8fc4;
-webkit-border-radius: 50px;
border-radius: 80px !important;
position: relative;
top: -32px !important;
left: -1px !important;
-webkit-box-shadow: 0 1px 0.5px rgba(0,0,0,0.3), 0 2px 2px rgba(0,0,0,0.2);
box-shadow: 0 1px 0.5px rgba(0,0,0,0.3), 0 2px 2px rgba(0,0,0,0.2);
}
.claro .jimu-widget-header .logo > img {
height: 100px !important;
... View more
03-15-2017
02:31 PM
|
0
|
2
|
2691
|
|
POST
|
I am confused on if i need to copy a file to my WAB folder or just add the code of the pic you posted? What file do you add this too? Here is a how to post code on geonet. https://community.esri.com/docs/DOC-8691
... View more
03-14-2017
11:59 AM
|
0
|
3
|
2665
|
|
POST
|
sure. I have two widgets that pop up when the application is started, the Legend and Permit Search. I was able to move the legend widget with the code you posted but you can see that the Permit Search widget is blocking the widget icons on the top right corner at start up.
... View more
03-10-2017
11:55 AM
|
0
|
3
|
5333
|
|
POST
|
Robert that seem to work for just the Legend widget, but the Esearch popup is blocking the the widgets on the right. I can't seem to find the location of code to add position.left+=50: for Permit Search widget.
... View more
03-10-2017
10:06 AM
|
0
|
5
|
5333
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-27-2022 11:37 AM | |
| 1 | 10-31-2023 10:16 AM | |
| 1 | 02-16-2023 01:50 PM | |
| 1 | 08-11-2021 11:13 AM | |
| 1 | 01-06-2021 10:45 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-10-2024
10:42 AM
|