POST
|
We put the user back to a broken state and tried to set the "map.navigationManager.setImmediateClick()". It remained in a broken state, thanks for the idea though.
... View more
03-31-2021
05:11 AM
|
1
|
0
|
2923
|
POST
|
That's a very good find on the resolution/zoom. We had our user with the issue try some things and soon as the user adjusted the zoom to anything more than 100%, it would break. Keeping it at 100% fixed the issue. Our entire organization had our Chrome updated to 89.0.4389.90 last week, the same time we noticed the issue occur. I would say it's a combination of Chrome changes along with the JSAPI. Of course, I believe we also had all of our monthly security patches pushed.
... View more
03-31-2021
04:26 AM
|
1
|
2
|
2593
|
POST
|
We attempted the resize concept, but that didn't appear to do anything for us.
... View more
03-31-2021
04:22 AM
|
0
|
0
|
2878
|
POST
|
We upgraded our API about 2 years ago and found anything above 3.28 would break ESRI's Draw widget due to it not using something called _tGraphic. It essentially allows a preview of Draw tools on the map before placing the graphic down and we also custom made that graphic to show on the fly measurements. There could have been other tools that broke, but we stopped testing when we saw that and began testing with 3.28, where everything worked.
... View more
03-30-2021
05:11 AM
|
1
|
0
|
2630
|
POST
|
I want to add that even though updating to 3.35 API is a solution, I want to find an alternative solution since upgrading currently breaks several other tools for our application.
... View more
03-30-2021
04:46 AM
|
1
|
4
|
3139
|
POST
|
We have Edge, Edge Chromium, Firefox, and Chrome, only Chrome fails for our user. Just like HenryKo2 states, we have had several other users with the same Chrome version do Map Clicks and it works for them, but a small set of users continue to fail. We also thought it could be a user policies/settings thing once our user was able to fail on two different computers. Unfortunately due to teleworking in place, it's hard to for us to test that on more computers at the current moment for us.
... View more
03-30-2021
03:37 AM
|
1
|
13
|
3174
|
POST
|
Hey DanDan, We noticed last Thursday one of our users running into the exact same issue that you are describing. We also use the 3.28 API and your Chrome version is the exact same as well. One small difference is we have our Map setup in Div tags. I was able to click on the map within your website and it worked for me fine, but when I had the user that is having issues click it, he couldn't get it to work. One thing we noticed is that the Map Click event refuses to trigger, but will eventually trigger after several clicks. It works one time, then goes back to broken state until so many clicks are hit again. This happens both in our environment and also on yours for that one user. We also noticed if we point to a new version of the API (3.35) it fixed the issue for the user. We don't want to go that route just yet, but I did want to point it out. Please let me know if you are still working through this issue or if you were able to come up with a solution.
... View more
03-29-2021
06:30 AM
|
1
|
1
|
6830
|
POST
|
As I'm getting started on learning Typescript, Node, NPM, and everything else, this is one that I'm also running into. I'm trying to run something similar with the require function to get a local JSON file, but it continues to fail within the JSAPI (4.17) when I believe it should be running a different require method.
... View more
11-04-2020
06:16 AM
|
0
|
0
|
1613
|
POST
|
Nevermind, I figured out it had to do with these two lines: this.editorSymbolChooser.showBySymbol(symbol); this.editorSymbolChooser.showByType(this.editorSymbolChooser.type);
... View more
01-31-2019
04:43 AM
|
2
|
1
|
1888
|
POST
|
If I enter a Point down and change the symbology to it, then go to Edit that Point, the symbology appears to keep choosing the Default Point Symbol instead of the chosen/correct symbology. All of the other geometry types correctly show the symbols, but not Point. Anyone come up with a fix for this, yet?
... View more
01-31-2019
04:23 AM
|
0
|
2
|
1887
|
DOC
|
I was wondering if there is a way to offset the MapProgress widget so it is not always in the center of the map? Digging around the code and not able to see where those are being set.
... View more
10-09-2018
06:24 AM
|
0
|
0
|
1948
|
POST
|
Hey David, Did you ever investigate this more? I was able to upgrade my version on the server to the new 2.2 version, but lost the widgets-manifest.json when moving them over and now have no themes to choose from and no widgets showing up in the 'add widget panel'. I can probably reinstall portal and get it working, but I was curious if you found a solution to getting all the apps from new versions going without manually adding them?
... View more
01-18-2017
06:50 AM
|
0
|
0
|
2723
|
POST
|
I finally figured it out. Old Code: pRS.AddNew New Code: pRS.AddNew pPt
... View more
12-10-2012
07:36 AM
|
0
|
0
|
305
|
POST
|
I had this code working in ArcPad 8. When I tried to bring it over to ArcPad 10, I keep getting an error. The error is "Error Source Unavailable", "Error Description: Unavailable". Basically, the user clicks on the map, a form pops up, user enters information, then information is saved to that point. Point is then created and placed on map. Here's the code and the error comes up when it hits "pField.Shape = pPt": Sub SaveFieldData() Dim pControls, pCtl, pPt Dim pLayer, pRS, pFields Dim sDate, sTime, sTeam, sLocation, sLat, sLon, sMeasurement, sUnits, sMeasuringLocal, sMeasuring, sSymbolId, sComments Set pControls = Application.Forms("frmFieldData").Pages("PAGE1").Controls Set pLayer = Map.Layers("Field Data") pLayer.Editable = True Set pRS = pLayer.Records Set pFields = pRS.Fields Dim editRecord, sMeasId, sOrigDataId, sDataId, sLocalEdit, sSaveEditFlag editRecord = Application.UserProperties("EditRecord") Set pCtl = pControls("edtDate") sDate = pCtl.Value Set pCtl = pControls("edtTime") sTime = pCtl.Value Set pCtl = pControls("cboTeam") sTeam = pCtl.Value Set pCtl = pControls("edtLocation") sLocation = pCtl.Value Set pCtl = pControls("edtLat") sLat = pCtl.Value Set pCtl = pControls("edtLon") sLon = CDbl(pCtl.Value) Set pCtl = pControls("edtMeasured") sMeasurement = pCtl.Value Set pCtl = pControls("cboUnits") sUnits = pCtl.Value Application.UserProperties("LastUnits") = sUnits Set pCtl = pControls("cboMeasurementType") sMeasuring = pCtl.Text sMeasuringLocal = pCtl.Value Application.UserProperties("LastMeasurementType") = sMeasuringLocal Set pCtl = pControls("cboPlotCategory") sSymbolId = pCtl.Value Application.UserProperties("LastPlotCategory") = sSymbolId Set pCtl = pControls("edtComments") sComments = pCtl.Value If editRecord > 0 Then pRS.Bookmark = editRecord Else pRS.AddNew End If ' project the point into map coordinates Dim dblX, dblY dblX = CDbl(sLon) dblY = CDbl(sLat) Call ProjectLLToMap (dblX, dblY) ' add to the recordset Set pPt = Application.CreateAppObject ("Point") pPt.X = dblX pPt.Y = dblY If editRecord > 0 Then sMeasId = pFields("meas_id").Value sDataId = pFields("data_id").Value sLocalEdit = "E" Else sMeasId = -1 sDataId = Application.UserProperties("MinDataId") sLocalEdit = "C" End If If sDataId < 0 Then Application.UserProperties("MinDataId") = Application.UserProperties("MinDataId") - 1 End If pFields("SITE_NAME").Value = Application.UserProperties("Sitename") pFields("DATETIME").Value = CDate(sDate & " " & sTime) pFields("TEAM").Value = sTeam pFields("TIMESTAMP").Value = CDate(Now) pFields("AUTHOR").Value = sTeam pFields("LOCATION").Value = sLocation pFields("LONGITUDE").Value = sLon pFields("LATITUDE").Value = sLat pFields("CATEGORY").Value = Application.UserProperties("Category") pFields("UNITS").Value = sUnits pFields("MEASURING").Value = sMeasuring pFields("COMMENTS").Value = sComments pFields("DATA_ID").Value = sDataId pFields("SYMBOL_ID").Value = sSymbolId pFields("LABEL").Value = sMeasurement & "," & sUnits & "," & sMeasuringLocal pFields("MEAS_ID").Value = sMeasId pFields("MEASUREMNT").Value = sMeasurement pFields("EDIT_SYM").Value = sSymbolId & sSaveEditFlag Set pFields.Shape = pPt pRS.Update Sub ProjectMapToLL (dblX, dblY) 'Create a Point object (which inherits the map's coordsys) Dim pPt Set pPt = Application.CreateAppObject ("Point") 'Assign the X and Y values to the point object pPt.X = dblX pPt.Y = dblY 'Create a NAD1983 Lat/Lon CoordSys object Dim pLatLonCS Set pLatLonCS = Application.CreateAppObject ("CoordSys") pLatLonCS.Import Application.UserProperties("DefaultPath") & "\Coordinate Systems\North American Datum 1983.prj" 'Unproject the point to WGS 1984 Lat/Lon Dim pUnproj Set pUnproj = pLatLonCS.Project (pPt) dblX = pUnproj.X dblY = pUnproj.Y 'Clean up Set pPt = Nothing Set pLatLonCS = Nothing Set pUnProj = Nothing End Sub
... View more
12-10-2012
06:50 AM
|
0
|
1
|
721
|
Title | Kudos | Posted |
---|---|---|
1 | 03-31-2021 04:26 AM | |
1 | 03-31-2021 05:11 AM | |
1 | 03-30-2021 05:11 AM | |
1 | 03-30-2021 04:46 AM | |
1 | 03-30-2021 03:37 AM |
Online Status |
Offline
|
Date Last Visited |
3 weeks ago
|