|
POST
|
I cannot see any search function on the link you have posted up. Are you building up a SQL command to that is passed to the server? If so just build in the UPPER functions above into your SQL
... View more
09-11-2014
01:34 PM
|
0
|
4
|
1886
|
|
POST
|
Steven, I had more of a thought about this and to make it more robust it would be better to use the following python snippet: def convertName(address): newname = "" newaddress = address.split(" ") for word in range(1,len(newaddress) -1): newname = newname + newaddress[word] + " " return newname[:-1] to use in the field calculator follow the screenshot:
... View more
09-11-2014
01:27 PM
|
1
|
2
|
2041
|
|
POST
|
Flo, You have not tagged your question so it is hard to know what application, language you are referring to. If your are you using a SQL statement as you could add an upper or lower function to convert the case so that they will be the same, e.g: UPPER(Name) = UPPER(Value)
... View more
09-11-2014
01:21 PM
|
0
|
6
|
1886
|
|
POST
|
If you are using the field calculator, switch the parser to python and use the following: !address!.split(" ")[1] what this does is split the address field each time there is a space then uses the second item in the array (the array is zero based), it will only work if your address are all in the format of number streetname streettype. if you have street names with more spaces in then you will need to do some combination of if statements on the length of the array to handle the results, let me know if you need more advice
... View more
09-11-2014
12:41 PM
|
1
|
3
|
2041
|
|
POST
|
arcpy.GetCount_management returns a Result object and you have to cast it as int to check against it: int(arcpy.GetCount_management("CENTERLINE_Layer").getOutput(0))
... View more
09-11-2014
11:26 AM
|
3
|
6
|
3141
|
|
POST
|
In that case you add the rest endpoints into your web map then create your web application using that web map id.
... View more
09-10-2014
03:10 PM
|
1
|
1
|
1747
|
|
POST
|
Have a look at Roberts post here: Do you have to use AGOL to use WAB?
... View more
09-10-2014
03:02 PM
|
0
|
3
|
1747
|
|
POST
|
The cross domain has to be served from the server that you want to pull the services from by placing the file in the root directory of the web server. You will need to speak to your server admin to get the file placed where it needs to be.
... View more
09-10-2014
05:00 AM
|
1
|
1
|
864
|
|
POST
|
If you are using the filed calculator and if your numbers are always the same length (in this case 10 characters (including the space before the Name)), you could use: Right([Field],length([Field])-10) or you could split the field on the space and grab the second part: Split([Field], " ")(1) If you would prefer to use python as the parser then there is a good example here: Field Calculator: I just want the third word | SoCalGIS.org
... View more
09-08-2014
03:19 AM
|
0
|
6
|
3923
|
|
POST
|
Mohammed, It all depends where you are getting your base data from. If you are using the online basemaps then your are going to be stuck with using the options you have mentioned above. By default the viewer will take on the projection of your first basemap that you add to the application, so to have the projection of your application in UTM Zone 40 you will need to serve your own base maps that have also been created in the same projection. You can override the default projection of the first basemap using the wkid attribute in the map tag: http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Map_content/01m30000005p000000/ The wkid for UTM zone 40 will be 32640. But as I say i dont think you can just change this if you are using cached maps in a different projection. Regards Anthony
... View more
09-08-2014
12:54 AM
|
0
|
0
|
2126
|
|
POST
|
Esri UK are currently running a contest: Storymap Competition 2014 | Esri UK their terms for the comp can be found here: Story Map Contest Terms and Conditions | Esri UK
... View more
09-04-2014
10:00 AM
|
0
|
0
|
866
|
|
POST
|
The help says: To successfully publish your shortlist you’ll need to be able to host the application template and the photos you will use on a publicly accessible server, and you’ll also need an ArcGIS Online account (public or subscription) to author and save the map used in the shortlist. I guess the fact that that it says you need an Online account would suggest you can not yet run it on Portal. This maybe just that it relies of the latest version of the javascript API which portal has not caught up with yet. I'm sure in future releases you will be able too. I cannot see why you could not use your webmap id from portal in the template have you tried it? I would be interested to know if your are successful. Even online the shortlist app is not one you can choose from the share option.
... View more
09-04-2014
09:43 AM
|
0
|
5
|
2243
|
|
POST
|
If you are using the flex viewer it is easier just to add the attribute esrilogovisible="false" to the map tag in the main config file to hide the logo: ArcGIS Viewer for Flex then use the static image widget to add your own logo: ArcGIS Viewer for Flex no coding required regards anthony
... View more
09-04-2014
09:34 AM
|
0
|
0
|
1017
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-01-2016 01:57 PM | |
| 1 | 02-04-2013 01:05 AM | |
| 1 | 04-11-2013 09:53 PM | |
| 1 | 04-03-2013 09:42 AM | |
| 1 | 07-25-2014 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|