|
POST
|
Hi Matthew, You may want to require "esri.layers.WMSLayer" as well. Add, dojo.require("esri.layers.WMSLayer"); after dojo.require("esri.map");
... View more
09-03-2014
06:40 AM
|
0
|
0
|
1032
|
|
POST
|
Hi Arnold, How about the hatches in your first image, has it gone as well?
... View more
09-03-2014
06:36 AM
|
0
|
1
|
1501
|
|
POST
|
Interesting!!! Now i'm out of reasons . Can you post a subset of your route feature and calibration points where you have issues. I'll have a closer look.
... View more
09-03-2014
06:23 AM
|
0
|
0
|
1501
|
|
POST
|
That explains your second image, Difference in measure between your calibration points is 0.00102 because of your tolerance (0.001) value there is no change in measure between these two calibration point. That's why you are getting measure between these points as 0.000 Try creating a new feature class with tolerance 0.00001 and resolution 0.000001. You should get different measure at your hatches.
... View more
09-03-2014
06:20 AM
|
1
|
3
|
4412
|
|
POST
|
Saw your image just now, what is your route feature class M Tolerance and M Resolution? Is it 0,001 and 0.0001?
... View more
09-03-2014
06:00 AM
|
0
|
6
|
2911
|
|
POST
|
Hi Arnold, Is this multiple patch thing happening at random location? If this is happening at same location for same measure. Consider below image, the black dots are calibration points, and the red ones are measure location 1.250, even though the calibration points don't have same measures, you can end up getting multiple location with same measure. Can you check if you can see this pattern in your calibration point measure.
... View more
09-03-2014
05:35 AM
|
0
|
8
|
2911
|
|
POST
|
Hi Arnold, Setting looks good to me, probably its your calibration points. Most likely you are having a cluster of points with same measure.
... View more
09-03-2014
04:07 AM
|
0
|
12
|
2911
|
|
POST
|
Hi Arnold, 1) By any chance did you calibrate the route multiple times with extrapolate set to false? You may want to try calibrating the route again with extrapolate before and after set to true. 2) Double check to make sure that you don't have multiple calibration point in close proximity.
... View more
09-03-2014
03:49 AM
|
2
|
14
|
2911
|
|
POST
|
Looks like M Tolerance issue. Have a look at below discussion. arcgis make route event layer
... View more
09-03-2014
02:49 AM
|
0
|
1
|
829
|
|
POST
|
Hi Mick, Looks like a firewall is blocking your requests when connecting through wifi network. You should touch base with your network guys on this. use below two commands from command line to verify if this is the issue. When connected from your wifi you should not get response for these commands. ping <<server IP>> telnet <<server IP>> 80 or telnet <<server IP>> 6080 (if you are using default port)
... View more
09-02-2014
09:22 PM
|
0
|
0
|
964
|
|
POST
|
Hi Tom, looks like your page is getting posted backed, you may want to explore using callback (Ajax). Google with key phrase postback and callback. ArcGIS Javascript API is a client side scripting, when you postback your page, the whole page gets reloaded. This will cause your map to reload as well. Using a callback will prevent your page from reloading. Also, as a thumb rule i generally try to avoid using server controls (one's with <asp: ) in my applications. I prefer working with client control and callbacks.
... View more
09-02-2014
09:13 PM
|
0
|
4
|
2293
|
|
POST
|
Hi Ahmed, When you give select privilege on your FC to a user and let them access your DB directly, there is no way you can prevent users from extracting the data out. Richard's suggestion below is your best option, if you want your users to just view the data and not download it. create a map service with Query and data operations disabled. users can add this map service in arc map and view the data but cannot download data as vectors. ArcGIS Help 10.1
Richard Miedema wrote:
There a other ways to protect your data. If you really don´t want external viewers to retrieve your data, think of other ways, as for example creating map or WMS services.
If you don't have ArcGIS Server and can't procure one, you can explore open source software which support WMS.
... View more
09-02-2014
09:02 PM
|
0
|
0
|
548
|
|
POST
|
Hi Alex, Your draggable element was being set to display none at the time of initialization. when overview map is initialized the dom size will be unknown, which is causing the issue. Add below lines at the end of your map load event. after domAttr.set(dojo.query(".action.zoomTo", map.infoWindow.domNode)[0], 'style', 'cursor:pointer;'); also resolve domStyle to "dojo/dom-style" module
//add the overview map
domStyle.set(dojo.query(".draggable")[0], "display", "block");
overviewMapDijit = new esri.dijit.OverviewMap({
map: map,
width: 250,
height: 150
}, dojo.byId('overviewMapDiv'));
overviewMapDijit.startup();
domStyle.set(dojo.query(".draggable")[0], "display", "none");
... View more
09-02-2014
08:00 PM
|
1
|
1
|
1246
|
|
POST
|
Hi David, Try setting autoresize property when initializing the map. map | API Reference | ArcGIS API for JavaScript
... View more
09-02-2014
06:51 PM
|
0
|
1
|
2871
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-31-2014 06:04 AM | |
| 1 | 09-25-2014 06:03 PM | |
| 1 | 09-16-2014 06:15 PM | |
| 1 | 10-08-2014 03:50 AM | |
| 1 | 08-25-2014 08:33 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:24 AM
|