|
POST
|
Thanks! That camera model is not in 2.3 or 2.4? How did you get the L1D-20c model as an option?
... View more
11-06-2019
07:42 AM
|
0
|
2
|
7611
|
|
IDEA
|
It should also be mentioned, because of a bug, you cannot currently correctly quick print from the map. The print of the map is not the same extents on what you see on the screen. Being able to tie the extents of a map view to a map frame in the layout would be very helpful. Yet another arcmap equivalent missed in the Pro development.
... View more
11-06-2019
06:32 AM
|
0
|
0
|
3123
|
|
POST
|
Joshua, This issue of having to save the project in order to get the current map view extents is almost three years old. Are there any plans to fix this? aprx = arcpy.mp.ArcGISProject("CURRENT")
aprx.save This does not work for this either, you have to physically save the map first. Joshua Bixby Also if I move around in the Map View and then switch to the Layout View and I physically click to save the project the script to get the Map View extents does not work. If I physically click save in the Map View the script will work. Here is the entire script. arcpy.env.overwriteOutput = True
# Use the current arcgis pro project
aprx = arcpy.mp.ArcGISProject("CURRENT")
# List the map
m = aprx.listMaps("Layers")[0]
aprx.save() # this is not saving the project????
layout = aprx.listLayouts("Template_8_5x11_Layout")[0]
frame = layout.listElements("MAPFRAME_ELEMENT")[0]
ext = m.defaultCamera.getExtent()
frame.camera.setExtent(ext)
increment = 300
currenscale = int(frame.camera.scale) + 300
#arcpy.AddMessage("current " + str(currenscale))
newscale = currenscale - (currenscale % increment)
#arcpy.AddMessage("NEW " + str(newscale))
frame.camera.scale = newscale
... View more
11-06-2019
05:58 AM
|
0
|
0
|
2276
|
|
POST
|
Any chance you figured this out? I am having the same problems.
... View more
11-04-2019
08:26 AM
|
0
|
2
|
7311
|
|
IDEA
|
Our entire set of users were very unhappy about this. I was able to create an add-in where it will zoom to the maps extent in the layout with a click of a button. But being able to tie a map to a layout is crucial. Here is the script to get the extents of the Map view to the Layout view. Note that there is a bug (https://my.esri.com/#/support/bugs/BUG-000127000) and you have to save the project while in the Map view before running the script. arcpy.env.overwriteOutput = True
aprx = arcpy.mp.ArcGISProject("CURRENT")
m = aprx.listMaps("Layers")[0]
layout = aprx.listLayouts("Template_8_5x11_Layout")[0]
frame = layout.listElements("MAPFRAME_ELEMENT")[0]
ext = m.defaultCamera.getExtent()
frame.camera.setExtent(ext)
... View more
10-23-2019
09:18 AM
|
2
|
0
|
3123
|
|
POST
|
Could you show me the code to setting the popup template to default? I am very new to JS and this is my first roadblock. Edit: My Problem: It would only show me 6 of the results of the search. I wanted be able to scroll through all results. Solution: I set the maxSuggesttions to 1000000 now I can see all of the results with a scroll.
... View more
10-15-2019
09:32 AM
|
0
|
0
|
3055
|
|
IDEA
|
equivalent equivalency with all other software arc map equivalency arcmap equivalent #arcmap equivalency Not sure which is the correct one to use. Apparently the development team checks one of these tags out often.
... View more
10-14-2019
01:43 PM
|
1
|
0
|
9363
|
|
POST
|
Yes you can call a python script from your SDK solution. Here is an example. I have not personally tried to dissolve with the Pro SDK. Here is an example of executing a geoprocessing tool with the Pro SDK.
... View more
08-19-2019
07:24 AM
|
0
|
0
|
1435
|
|
POST
|
Installing Jupyter Notebook — Jupyter Documentation 4.1.1 alpha documentation
... View more
08-16-2019
09:07 AM
|
0
|
1
|
1365
|
|
POST
|
Is there a reason setting the fill to white will not work?
... View more
08-14-2019
05:57 AM
|
0
|
1
|
9876
|
|
POST
|
I don't know, it does not seem no color will work for this in Pro. The problem is, for what ever reason, in Pro they don't have polygons for symbology of POLYGONS, its fill with no outline. Weird huh. So you have no true outlines in the ArcMap equivlent, just something they call "solid stroke". The more I come across this stuff the more I am convinced the Pro development team had more of a CAD background. Add the tag "arcmap equivalent" to your original post to get more eyes on this.
... View more
08-14-2019
05:48 AM
|
3
|
0
|
9876
|
|
POST
|
Ok. It is similar.. Also that bug is almost two years old!
... View more
08-13-2019
01:32 PM
|
0
|
0
|
4093
|
|
POST
|
This is what I have found also. Note that sometimes when I add new data I need to close the project and reopen it to see the changes in the table frame.
... View more
08-13-2019
12:21 PM
|
2
|
0
|
4009
|
|
POST
|
For your case it is just a matter of how you layer your symbology layers. You will need to Enable symbol layer drawings with just Join. Example is for California and Nevada as two different classes and symbology to focus on. Notice on Nevada the Solid stroke is on top and California it's on bottom. Enable symbol layer:
... View more
08-13-2019
11:58 AM
|
1
|
4
|
9876
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 14 hours ago | |
| 1 | 04-17-2026 01:08 PM | |
| 1 | 03-23-2026 08:11 AM | |
| 1 | 03-23-2026 07:55 AM | |
| 7 | 03-18-2026 12:15 PM |
| Online Status |
Offline
|
| Date Last Visited |
15 hours ago
|