|
POST
|
Ah yes now I see. Once you print, in this example, it changes to Printout. Printout is now a hyperlink. If you click Printout, it opens a new window to the pdf
... View more
07-08-2014
01:01 PM
|
0
|
1
|
1525
|
|
POST
|
Not really sure what you are asking here. Most "printing" samples generate a pdf in the browser, or an image
... View more
07-08-2014
12:41 PM
|
0
|
3
|
1525
|
|
POST
|
you need to tag this post with javascript and/or web developers or no one will find it.
... View more
07-08-2014
07:22 AM
|
0
|
0
|
1730
|
|
POST
|
Testing out the new forums. So far - thumbs down. To your question. The variability is not uncommon, but I am afraid I dont have a cause. Basically the server is rerequesting all the tiles, and cant take advantage of any client side caching. Sometimes the server caching speeds it up, sometimes not. It all depends on the backend of the engine. And that is very black-boxy. Remember that the print optimization would have to occur on both the server receiving the request (the application host) and the data arcgis server, not on the client.
... View more
07-08-2014
06:36 AM
|
0
|
2
|
1577
|
|
POST
|
Print, in general, is a very slow operation because it has to be done serverside. I customized my own printing, and it is still quite slow.
... View more
07-03-2014
08:34 AM
|
0
|
0
|
1577
|
|
POST
|
Hi, I have some coordinates for my points which are made for the projection "lambert 2 extend" or if you prefer "Lambert II étendue" in french. I am sure about my points. I found on internet that iD of this system of projection is n°102582 but when I use that :
var myLine ={geometry:{"paths":[[[412278.09,2205649.06],[451167.6,2179520.6]]],
"spatialReference":{"wkid": 102582}},
"symbol":{"color":[0,0,0,255],"width":1,"type":"esriSLS","style":"esriSLSSolid"}};
my line is in Africa, not realy in France as i would want to have ! Someone have an idea for my little problem of localisation ? Please, what is you map spatial reference?
... View more
07-03-2014
08:24 AM
|
0
|
0
|
575
|
|
POST
|
you need to remove the clearmap function from your function list. That (except domReady!) should match exactly.
... View more
07-03-2014
04:44 AM
|
0
|
0
|
4280
|
|
POST
|
additionally, where did you hear that 4.x will support 3d? I thought only cityengine supported 3d
... View more
07-02-2014
06:50 AM
|
0
|
1
|
1372
|
|
POST
|
Yes sorry, that is a good workflow. I thought he was looking for something in the API
... View more
07-02-2014
06:47 AM
|
0
|
0
|
912
|
|
POST
|
we have been down this road. You need to add a print.css and <link rel="stylesheet" href="css/print.css" type="text/css" media="print"> and then do a TON of customization to the css. And it will likely only work on one hardcoded size. If you want to change portrait, landscape, tabloid, etc.. it (in my opinion) is not going to work
... View more
07-01-2014
09:54 AM
|
0
|
0
|
485
|
|
POST
|
Looking at the error, it looks like Text editing (maybe all points) requires Edit.EDIT_VERTICES, Edit.EDIT_TEXT (text only?), Edit.MOVE tools n=this._enableBoxEditing(b,c,p);(a&e)===e&&(k=this._enableVertexEditing(b));(a&g)===g&&this._enableTextEditing(b);if(!h&&!k&&!n)throw Error("[esri.toolbars.Edit::activate] Unable to activate the tool. Check if the tool is valid for the given geometry type."); The code below prevents the error, which makes the popup work as expected.... function createGraphicsMenu() {
// Creates right-click context menu for GRAPHICS
ctxMenuForGraphics = new Menu({});
ctxMenuForGraphics.addChild(new MenuItem({
label: "Edit",
onClick: function() {
if ( selected.geometry.type !== "point" ) {
editToolbar.activate(Edit.EDIT_VERTICES, selected);
} else {
editToolbar.activate(Edit.MOVE | Edit.EDIT_VERTICES | Edit.EDIT_TEXT, selected);
}
}
})); nicely done. I got to there in the code, but couldnt get the solution out. excellent
... View more
07-01-2014
09:45 AM
|
0
|
0
|
2840
|
| 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
|