|
POST
|
This is our exact environment: 1. The data in SDE must be versioned. Owner of the data does not matter, as long as an editor (DB user) has edit privileges. 2. The ArcGISSOC user is not a database user, only OS. It does not need to be on the database server 3. Create your mxd and switch the version to the edit version (this will change at 10.1, were you will likely publish the msd at the parent SDE version and specify in the application which child private version you will use). Right now you have to hardcode the edit version in the mxd/msd. 4. Publish the MSD to server, enabling feature services. 5. The directory the MSD resides in is the one that <active directory>/ArcGISSOC user needs access to.
... View more
05-02-2012
04:56 AM
|
1
|
0
|
3472
|
|
POST
|
I couldnt get them working either, and ended up using jQuery tabs.
... View more
04-30-2012
08:23 AM
|
0
|
0
|
2290
|
|
POST
|
I didn't even know of the existence of the measurement tool 😕 I've implemented it, and it works fine, except for one thing: How can I use other measurement units than the standard choices. I'm particularly thinking of using nautical miles. Unfortuantely it doesnt look like the measurement tool supports nautical miles, although i am not sure why. Maybe ESRI can comment on that.
... View more
04-26-2012
06:03 AM
|
0
|
0
|
1021
|
|
POST
|
I hear ya. What I'm trying to say is that there's a sweet spot: can (should?) a parcel viewer also show zoning info? Yes, of course. Zoning is a logical addition and usually not more than an additional attribute. Now, does your parcel/zoning viewer app need 20+ additional map services, a TOC to manage them all along with multiple toolbars with map navigation tools that 99% of your users will ignore and probably not understand? I hope the answer is a resounding no. Other features like measuring and geocoding have a place (especially geocoding, most people expect to be able to enter an address and have the map go there) and can usually be included in a simple, easy-to-understand way. I think you run into trouble (and usability issues) when you start adding toolbars and duplicating functionality in your app. Redlining is a different animal as I think it means different things to different people. On the whole, if you're asking people to annotate and/or edit maps/data, I would make that a separate app. Use a simplified, read-only app for public consumption and a more fully-featured (but still not an ArcMap clone!) for things like editing and making custom maps. Totally agree. We ended up with the all in one app, but with config files to determine what layers/widgets load. (?type=landdevelopment). That way its one app to maintain, limitless config options. So on land development, you get zoning, etc and on utilities you get trash pickup. Also means only one interface to learn/teach, but with customizable options.
... View more
04-25-2012
12:14 PM
|
0
|
0
|
740
|
|
POST
|
I'm happy to hear that you're moving to using the ArcGIS API for JavaScript but I'd like to discourage you from trying to duplicate ArcMap in a browser. Web apps should not strive to duplicate heavyweight desktop clients, even if your goal is a light version. I would instead encourage you to build focused, targeted apps with a specific use in mind. Try to build apps that answers a specific question or addresses a specific problem rather than building something that is a tool for general analysis. While I agree with this both in principle (as a developer) and in theory, unfortunately it does not work in practice. On mobile devices users are willing to tolerate a single use app because they are so fast and lightweight. However, on the web, they expect full functionality. Can you imagine from a training standpoint: If you want parcels, open this webpage. Oh you want to see Zoning, thats a different app. Oh you want Utilities, app number 3. Measure, Redline, Geocode? apps 4 5 and 6. User = gone. Of course, as soon as we add it all to one app, you get complaints about speed. Our app is a slow all in one, so we developed a very light fast specific app. Immediately requests starting pouring in to add everything we had removed to speed it up. Unfortunately, for the majority of our users, the specific question or problem they want answered is "how can i do everything that i can do on the desktop on the web for free" 🙂 Here is a link to our slow all in one. http://www.mymanatee.org/gisapps/mapviewer/
... View more
04-25-2012
10:42 AM
|
0
|
0
|
2562
|
|
POST
|
Hi, I am trying to add a kml layer to my map. However, the control reaches onError handler and shows 'File not found. Wrong Url' error. The Url is correct and I can get back data if I use it on a IE browser. Why should the code fail with this error? Any input is appreciated. Our server isn't accessible from outside. If I see in developer tools where the url is appended to http://utility.arcgis.com/sharing/kml?url=myurl ==> this returns File not found error and I am sure Kml layer isn't getting loaded because of this. But, how should I fix this? Thanks! KML must be on a public server https://developers.google.com/maps/documentation/business/faq#intranet_kml How do I render KML files that are hosted on intranet sites on a map? The KmlLayer class that generates KML overlays in the Google Maps API uses a Google hosted service to retrieve and parse KML files for rendering. Consequently it is not possible to display KML files that are not hosted at a URL that is available publicly accessible, or that require authentication to access. If you need to develop applications that use KML files hosted on intranet sites we recommend that you either: Use the Google Earth API which supports client side parsing and rendering of KML. Render the KML on the client side by using third-party JavaScript libraries. As the KML file is analyzed by the browser, performance may be lower than by using the KmlLayer class.
... View more
04-25-2012
05:07 AM
|
0
|
0
|
1189
|
|
POST
|
I created a basic map displaying Rest Services A, B & C using the "ArcGIS Viewer For Flex Prerelease" GUI, then c/p the app directory to: https://mydomain.com/flexmap I then created a similar map using the JS API and hosted the web app here: https://mydomain.com/jsmap When the client visits the flex map, everything is fine, but when the JS map is viewed, Internet Explorer displays "IE has blocked this website from displaying content with security certificate errors". After the alert ribbon is clicked, you can choose "display blocked content" and everything works. What in the JS api would be causing this? here's how the api si referenced: <script type="text/javascript" src="https://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.8"></script> thanks! Are you connecting to a secure service? if so, you need to put a valid ssl cert on the server. It looks like flex is blindly trusting and invalid cert on the server (BAD) but javascript is not (GOOD).
... View more
04-24-2012
11:46 AM
|
0
|
0
|
1116
|
|
POST
|
I had tried queryTask - I am not even getting into the call back - not sure what is wrong with my query - here it is: getFeatures: function(){ var queryTask = new esri.tasks.QueryTask(sublayeritem.url); var queryP = new esri.tasks.Query(); queryP.returnGeometry = true; queryP.outFields = ["*"]; queryP.outSpatialReference = this.map.spatialReference; queryTask.execute(queryP, dojo.hitch(this, "resultCallback")); }, resultCallback: function(featureSet) { } do you see the query (as a GET or POST) in firebug?
... View more
04-23-2012
08:29 AM
|
0
|
0
|
530
|
|
POST
|
Are you using the JS Sample Viewer? It contains a livemapswidget if so, the name (label) in the tree comes from the config.xml file <livemaps> <mapservice label="Community Redevelopment Areas" type="dynamic" visible="false" alpha="0.6">http://www.mymanatee.org/arcgis/rest/services/community-services/cra/MapServer</mapservice>
... View more
04-20-2012
06:45 AM
|
0
|
0
|
2509
|
|
POST
|
I never really had alot of luck with center and zoom. I prefer to called setExtent explicitly. do you get the same error with map.setExtent(map.extent.centerAt(pt);
map.setExtent(map.extent.expand(0.1));
if you do it this way it also explicity says use factor and cant be misinterpreted as a level from tiled (if you use a tiled basemap from the gallery or AGO, for example)
... View more
04-20-2012
05:36 AM
|
0
|
0
|
2266
|
|
POST
|
derek is absolutely right, VML for IE7 (and 8 i believe).
... View more
04-18-2012
07:39 AM
|
0
|
0
|
1439
|
|
POST
|
We have an application required to run on IE7 and we've encountered a problem with an event object passed into a function during a dojo.connect "onclick". evt.graphic.symbol.type is coming in as "not defined" in IE7, but works in Firefox. The code: dojo.connect(this.map,"onClick", function(evt) { if(evt.graphic.symbol.type == "textsymbol") { // do something } else { // do something else } }); Should this work in IE7? My guess is this is due to the fact that IE uses canvas and everything else uses SVG. if you alert evt.graphic.symbol i bet you get different results in IE and others. YOu will have to do a dojo.isIE<9 and trap for canvas element or check dojox.gfx.renderer==="vml" and then do your event.
... View more
04-18-2012
06:48 AM
|
0
|
0
|
1439
|
|
POST
|
please see this thread http://forums.arcgis.com/threads/46272-Widget-BasemapGallery-dropdown-question it shows how to define a gallery with only the chosen basemaps you want.
... View more
04-16-2012
10:28 AM
|
0
|
0
|
753
|
|
POST
|
you could create a spatial view of the data showing the m value using st_m(shape) and then include that view in the query
... View more
04-16-2012
05:07 AM
|
0
|
0
|
491
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-22-2014 08:35 AM | |
| 1 | 05-02-2012 04:56 AM | |
| 1 | 10-29-2021 07:40 AM | |
| 1 | 10-28-2021 05:26 AM | |
| 1 | 07-17-2012 08:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-01-2022
02:00 PM
|