POST
|
You could check the Customize Visible Scales option in web appbuilder. here is the doc that mentions it Map—Web AppBuilder for ArcGIS | ArcGIS
... View more
11-19-2015
09:20 PM
|
1
|
1
|
1553
|
POST
|
Hi, It’s not exposed in 10.3.1. We added it for 10.4 as IEditProperties5.AutoSaveNonVersionedEdit
... View more
09-02-2015
09:43 AM
|
0
|
1
|
2302
|
POST
|
Hi Heather, I tried it this morning with 10.3.1 and it worked as expected. You could try renaming the normal.mxt to something like oldnormal.mxt, then launch arcmap again and re paste the code into 'ThisDocument', if that doesn't work, i would suggest contacting Esri technical support. Regards, Ian
... View more
08-31-2015
09:59 AM
|
0
|
4
|
2302
|
POST
|
You have a couple of options based on the way the app was written. Option 1) configure the app to use multiple locators with the Esri world geocoder listed first within the commonConfig.js file, this will enable autoComplete for both locators, but your end user will have to switch to the composite in the dropdown menu in the app. geocode: [{ url: location.protocol + "//geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer"}, { url: location.protocol + "//gis.linncounty.org/arcgis/rest/services/PublicBase/LocatorComposite/GeocodeServer", name: "LocatorComposite", singleLineFieldName: "SingleLine", placefinding: true, placeholder: "Find an Address or GPN" }] Option 2: change the code to set autoComplete: true Back in the js\modules\utils.js file again around line 83 you could change the options of the geocoder to look something like this: var options = { map: _self.options.map, zoomScale: 400, theme: 'modernGrey', autoComplete:true };
... View more
04-02-2014
02:39 PM
|
0
|
0
|
2779
|
POST
|
Here are a few questions that will hopefully assist me in understanding the cause of the problem. Which browser are you using? Is the feature service hosted online or an arcgis server? If server, what is the version of arcgis server? Does the server require requests over https?
... View more
04-02-2014
01:49 PM
|
0
|
0
|
857
|
POST
|
Yes, you can use a composite locator with the templates. In your code, the URL and the singleLineFieldName need to be changed. The singleLineFieldName can be determined by checking the 'Single Line Address Field' value of a geocode server, in this case it was "SingleLine". geocode: [{
url: location.protocol + "//gis.linncounty.org/arcgis/rest/services/PublicBase/LocatorComposite/GeocodeServer",
name: "LocatorComposite",
singleLineFieldName: "SingleLine",
placefinding: true,
placeholder: "Find an Address or GPN"
}]
... View more
04-01-2014
02:57 PM
|
0
|
0
|
2779
|
POST
|
Thanks a lot Ian! Geocoder works like expected now. Would you happen to know how to set the zoom level when an address is selected? And yes, I am located in Cedar Rapids, working for Linn County. It's a small world! Cool, i had a fun time in Cedar Rapids. To set the zoom level you can try adding this to zoomScale: 400, to the js\modules\utils.js around line 83. here is some additional info on it. https://developers.arcgis.com/javascript/jsapi/geocoder.html#zoomscale
... View more
03-19-2014
08:21 AM
|
0
|
0
|
2779
|
POST
|
Do I need to replace any values I currently have? Hi Matt, the singleLineFieldName should match the value your geocode server is expecting. On your server the value is 'Single Line Input'. So in your code it should look like this: singleLineFieldName: "Single Line Input", Are you located in Cedar Rapids? I worked in the great america building for 6 years.
... View more
03-18-2014
07:04 AM
|
0
|
0
|
2779
|
POST
|
There is a place within the commonConfig.js file to enter a URL for a geocode service, however when I enter ours, the search box disappears. Try defining the singleLineFieldName and setting placefinding to true as in this example. [ATTACH=CONFIG]32221[/ATTACH]
... View more
03-16-2014
09:30 AM
|
0
|
0
|
2779
|
POST
|
Here is some code that will allow you to add the editor toolbar to the basic viewer. We are going to make this a configurable option in the future.Here's what you have to do. In layout.css add the following: .esriDrawingToolbar{ position:absolute; top:0px; right:0px; left:0px; border:none !important; margin-bottom:40px; } Then in layout.js replace the existing createEditor function with this one: function createEditor() { if (editorWidget) { return; } if (editLayers.length > 0) { var editLayerInfo = editLayers; var templateLayers = dojo.map(editLayers, function (layer) { return layer.featureLayer; }); //add field infos if applicable - this will contain hints if defined in the popup. Also added logic to hide fields that have visible = false. The popup takes //care of this for the info window but not for the edit window. dojo.forEach(editLayerInfo, function (layer) { if (layer.featureLayer && layer.featureLayer.infoTemplate && layer.featureLayer.infoTemplate.info && layer.featureLayer.infoTemplate.info.fieldInfos) { //only display visible fields var fields = layer.featureLayer.infoTemplate.info.fieldInfos; var fieldInfos = []; dojo.forEach(fields, function (field) { if (field.visible) { fieldInfos.push(field); } }); layer.fieldInfos = fieldInfos; } }); var editPanelHeight = dojo.style(dojo.byId("leftPane"), "height"); var templatePicker = new esri.dijit.editing.TemplatePicker({ featureLayers: templateLayers, showTooltip: false, rows: "auto", columns: "auto", style: "height:" + editPanelHeight + "px;width:" + (parseInt(configOptions.leftpanewidth) - 10) + "px;" }, dojo.create("div",{},"editPanel")); templatePicker.startup(); var params = { map: map, templatePicker:templatePicker, layerInfos: editLayerInfo, toolbarVisible: true }; editorWidget = new esri.dijit.editing.Editor({settings: params}, dojo.create("div",{ id:"editDiv" },"editPanel" )); editorWidget.startup(); disablePopups(); } }
... View more
01-17-2014
07:15 AM
|
0
|
0
|
981
|
POST
|
I've seen these map examples with Elevation Profiles. http://www.arcgis.com/home/webmap/viewer.html?webmap=a865df88e5744ee5a0daa76d2ca4385b http://www.arcgis.com/home/item.html?id=b9d247c297f144459854751740f59f68 Does anyone know how this was done or have an idea of how I could achieve this for my organization? Thanks in advance The easiest way to build an elevation profile map for you organization would probably be to use this application template. http://www.arcgis.com/apps/Elevations/index.html To publish your own app, sign in to arcgis.com, open the web map you would like to publish in the map viewer, then Share > Make Web Application > Elevation Profile > Publish
... View more
01-16-2014
07:04 AM
|
0
|
1
|
599
|
POST
|
Hey Guys, I would like to combine two templates provided by ESRI. The basic template and the editor template. Does anyone know how do go about doing this and where do I start. Any guideline and direction will be greatly appreciated. Thanks. The basic viewer template already supports editing. Is there something else that you like about the editor template that the Basic Viewer is missing?
... View more
01-10-2014
12:51 PM
|
0
|
0
|
981
|
POST
|
based on what you are describing, it sounds like you need to modify the helperServices section of the config/commonConfig.js file to include the singleLineFieldName, and set placefinding to true. here is an example: geocode: [{url: location.protocol + "//<yourserver>/arcgis/rest/services/GEOCODE/GeocodeServer", name: "Test Geocoder", singleLineFieldName: "SingleLine", placefinding: true }]
... View more
01-09-2014
08:26 AM
|
0
|
0
|
869
|
POST
|
after closing the measurement widget yo can't do no more edits beacuse you can only open the popup in view mode. Based on your description of the popup only being able to open in view mode, my first thought is that the feature service you are working is configured to only allow create feature and thus does not have updated feature enabled. Can you check that the service properties to confirm that it has update enable?
... View more
10-22-2013
08:11 AM
|
0
|
0
|
380
|
POST
|
Yes, both the Search and Help buttons are missing from our hosted Parcel Viewer Apps. We contacted tech support this morning about this issue and they are investigating. We have a fix for this tested and it should be deployed and available by tomorrow morning.
... View more
09-19-2013
08:42 AM
|
0
|
0
|
631
|
Title | Kudos | Posted |
---|---|---|
1 | 11-19-2015 09:20 PM | |
1 | 04-03-2019 10:05 AM | |
3 | 09-19-2018 10:35 AM | |
1 | 09-19-2018 11:49 AM | |
1 | 09-19-2018 10:59 AM |
Online Status |
Offline
|
Date Last Visited |
07-02-2025
09:09 AM
|