|
POST
|
I shared a new service on ArcGIS Online. I did not symbolize it in desktop, I used the symbology capabilities of the online map. The first time we went to edit a point it showed up as a text box, which is what it is, text. As soon as we saved the edited point, the field went back to a domain or pick list. The other fields that are domains and had pick lists changed to text boxes. This is only on the IOS devices. If you go to the webmap and edit a point there, the fields that have domains still have pick lists. Any ideas? Luci
... View more
04-29-2014
03:50 AM
|
0
|
0
|
1151
|
|
POST
|
Thank you for the links. We have ArcGIS Server and a subscription to ArcGIS online. We do not have portal though and I do not believe we will be able to purchase the extension. So, we will just work around it 🙂 Luci
... View more
04-29-2014
03:44 AM
|
0
|
0
|
849
|
|
POST
|
Thank you Russ. We have played around with the symbols and are using the ArcGIS online symbols instead of symbolizing prior to sharing the service. They seem to be working a bit better but we had to make them huge. Luci
... View more
04-29-2014
03:40 AM
|
1
|
0
|
709
|
|
POST
|
Thank you Russ! The "Configure Attributes" should be a big button or something that stands out more, I never even thought to click on those words. [ATTACH=CONFIG]33437[/ATTACH] Luci
... View more
04-29-2014
03:37 AM
|
0
|
0
|
714
|
|
POST
|
Do you have other onclick events happening in your app?
... View more
04-28-2014
11:27 AM
|
0
|
0
|
1667
|
|
POST
|
Something like this in your code should work: var handlerd, mcpx, mcpy; //declare your variables //add function that will be activated when button clicked function getmappoint() { handlerd = dojo.connect(map, "onClick", getmapcoordinates); map.hideZoomSlider(); } function getmapcoordinates(evt){ map.graphics.clear(); var mpoint = new esri.geometry.Point(evt.mapPoint.x, evt.mapPoint.y, map.spatialReference); var msymbol = new esri.symbol.PictureMarkerSymbol({ "angle" : 0, "xoffset" : 6, "yoffset" : 12, "url" : "images/red_pin.png", "width" : 24, "height" : 24 }); var mgraphic = new esri.Graphic(mpoint, msymbol); map.graphics.add(mgraphic); mcpx = evt.mapPoint.getLongitude(); mcpy = evt.mapPoint.getLatitude(); dojo.byId("inLat").value = mcpy.toFixed(8); dojo.byId("inLon").value = mcpx.toFixed(8); } //add button and text boxes for Lat-Long coord <p>Get coordinates by clicking on the button below and then clicking on the map </p> <button data-dojo-type="dijit.form.Button" onClick="getmappoint()"> Get Coordinates </button> <div> <span>Latitude: </span> <input tabindex="2" type="text" id="inLat" /> </div> <div> <span>Longitude:</span> <input tabindex="1" type="text" id="inLon" /> </div> Luci
... View more
04-28-2014
10:46 AM
|
0
|
0
|
1728
|
|
POST
|
Hi, You might try it this way: var identifyListener; function activateIdentify(){ if (dom.byId("identifyDiv").checked) { identifyListener = dojo.connect(map, "onClick", executeIdentifyTask); } else { dojo.disconnect(identifyListener); } } function executeIdentifyTask(){ alert("Click"); }; Luci
... View more
04-28-2014
10:26 AM
|
0
|
0
|
1667
|
|
POST
|
Is there a way to set a reference scale for symbology? The symbols end up being way to small when we zoom in. If we make them bigger, when we are zoomed all of the way out, they sporadically show up. Thanks, Luci
... View more
04-24-2014
01:24 PM
|
0
|
2
|
2752
|
|
POST
|
We have a feature service layer that we uploaded and added to an Arcgis.com webmap. Then we created a custom popup on our Arcgis.com map so that only the fields we want to edit would show up. However, when we click "edit", ALL of the fields are visible and we have to scroll thru them to find the fields we want to edit. Is there any way around this? Thanks, Luci
... View more
04-24-2014
01:21 PM
|
0
|
2
|
1242
|
|
POST
|
Change your code: <link rel="stylesheet" href="https://js.arcgis.com/3.9/js/esri/css/esri.css"> <script src="https://js.arcgis.com/3.9/"></script> app.map = new esri.Map("map", { basemap: "topo", center: [-77.4329, 37.5410], zoom: 7, slider: false, //this should be slider: true, showAttribution:true, logo: false }); var home = new HomeButton({ map: app.map }, "HomeButton"); home.startup(); var geoLocate = new LocateButton({ map: app.map }, "LocateButton"); geoLocate.startup(); If you change slider: false, to slider: true, you will see the + - zoom buttons Luci
... View more
04-23-2014
12:45 PM
|
0
|
0
|
964
|
|
POST
|
We had a similar problem and had to use the 3 finger slide to scroll up and down in a popup on the ipad. Thanks, Luci
... View more
04-23-2014
11:52 AM
|
0
|
0
|
3927
|
|
POST
|
You need to reference the esri stylesheet and javascript api <link rel="stylesheet" type="text/css" href="http://js.arcgis.com/3.9/js/esri/css/esri.css"> <script src="//js.arcgis.com/3.9/"></script> Also, you will not get the zoom in/out buttons with slider: false needs to be slider: true app.map = new esri.Map("map", { basemap: "topo", center: [-77.4329, 37.5410], zoom: 7, slider: false, showAttribution:false, logo: false }); Hope this helps, Luci
... View more
04-23-2014
11:37 AM
|
0
|
0
|
964
|
|
POST
|
Hello, We have just began playing around with Collector. We are going to view one of the seminars today. However, I was wondering if anyone had a link to some good information on how to use Collector with our own SDE geodatabase instead of ArcGIS Online. Is Portal required to do that? Thanks, Luci
... View more
04-17-2014
04:51 AM
|
0
|
3
|
1315
|
|
POST
|
The field: Field_Verified When you go to edit a point, the field does not show up as a text box, instead you have options with check marks like it was a subtype field or a domain field. We are using that field for symbology because we either want the symbol green or red. Red (N - for No) means our people need to check the light in the field, green (Y - for Yes) means the light has been checked. I think this must be by design because when I go to "add" a new item, it only gave me the option of adding a "N" feature. I worked around the problem by entering "Y" in the field of one of our points. Now we have the option of picking N or Y when editing and also a N or Y option when collecting a new feature. I should have used a Short Integer with a domain yes/no instead of text. 🙂 Thanks, Luci
... View more
04-17-2014
03:58 AM
|
0
|
0
|
1151
|
|
POST
|
Hey Russ, Invitation sent to join StreetLight editing group. Thanks, Luci
... View more
04-16-2014
08:14 AM
|
0
|
0
|
1151
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-04-2023 06:49 AM | |
| 1 | 09-29-2014 01:05 PM | |
| 1 | 11-30-2015 10:09 AM | |
| 1 | 02-09-2015 01:56 PM | |
| 1 | 12-30-2014 05:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-04-2023
10:56 PM
|