|
POST
|
Robert but if a id is not expecting in this case i have to use one WMS with more layers. But if i want to put in Title window more layerTOC with one WMS for each is possible?
... View more
01-24-2011
06:56 AM
|
0
|
0
|
823
|
|
POST
|
Sorry Robert but in Title Window when i put in "layers" my id of Dynamic Service i have one error
... View more
01-24-2011
05:52 AM
|
0
|
0
|
823
|
|
POST
|
ok. So if i want add in the titlewindow a Hslider for trasparency, i have to create in my application a new var for tag alpha? Thanks
... View more
01-24-2011
05:14 AM
|
0
|
0
|
823
|
|
POST
|
Thanks Robert, but in the tag layer={layer}, i put in the "id" of my Dynamic Service?
... View more
01-24-2011
04:56 AM
|
0
|
0
|
823
|
|
POST
|
Hi guys i have developed a custom we application! I have developed a ITitleWindow with method PopUp, so i can call a panel with a button click. Now i would like to insert in tih ITitleWindow a LayerTOC.mxml so i can open and close my services in this panel. This thing can be done?......in the TitleWindow i have to put in the class Esri:Map and ArcgisDynamic service? thanks
... View more
01-24-2011
01:28 AM
|
0
|
11
|
3311
|
|
POST
|
You have a small error when building your string. add a + sign in your second line.. It should look like so. [code sURL += "?bbox="+myMap.extent.xmin+","+myMap.extent.ymin+" ,"+myMap.extent.xmax+","+myMap.extent.ymax; Drew Thanks you are right
... View more
01-21-2011
11:01 AM
|
0
|
0
|
347
|
|
POST
|
Hi guys, i have write a script for export Map of my web personal application. The code is <mx:Script> <![CDATA[ public function PrintPDFx():void { var sURL:String; sURL = "http://193.204.163.134/ArcGIS/rest/services/Roma/Carg_Roma/MapServer/export"; sURL = "?bbox="+myMap.extent.xmin+","+myMap.extent.ymin+","+myMap.extent.xmax+","+myMap.extent.ymax; //sURL+="&layers="; sURL+="&size="+myMap.width+","+myMap.height; sURL+="&format=pdf"; sURL+="&trasparent=false"; //sURL+="&dpi"; sURL+="&f=image"; sURL+="&width"+myMap.width; sURL+="&height"+myMap.height; navigateToURL(new URLRequest(sURL),'_blank'); } ]]> but i have a problem. When i click the button on my web application, opens a new website but not pdf with the service I set it to print. Why? My script is wrong? Thanks
... View more
01-21-2011
07:38 AM
|
0
|
2
|
587
|
|
POST
|
Hi guys. I'm developing my web application with Flash Builder 4 and i'm working with API for Flex 2.2. Now i wrote this sample code for the overlap betwen thw street map and imagery, and i used a HSlidedr <esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D/MapServer"/> <esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer" alpha="{HSlider.value}"/> </esri:Map> <s:HSlider horizontalCenter="-2" bottom="10" id="HSlider" minimum="0" maximum="1" value="0.01" liveDragging="true"/> but when run my application there isn't a gradual overlap etwen the maps. Why? In the flex 3 this function is ok Why this?
... View more
01-17-2011
01:36 AM
|
0
|
2
|
550
|
|
POST
|
hi guys i apologise for any inconvenience , but i solved the problem with import navigationtool class thaks
... View more
01-14-2011
12:55 AM
|
0
|
0
|
339
|
|
POST
|
Hello guys i have a problem! i wrote in flex builder 3 this script for a new navigation tools <mx:Script> <![CDATA[ import com.esri.ags.geometry.Extent; import com.esri.ags.SpatialReference; private function zoominFunction():void { navToolbar.activate(Navigation.ZOOM_IN); } private function zoomoutFunction():void { Roma.level = Roma.level - 1; } // zoomuot by substracting one level at a time private function panFunction():void { navToolbar.activate(Navigation.PAN); } private function kaneExtent():void { var spatialRef:SpatialReference = new SpatialReference(4326); var extent:Extent = new Extent(-150,-50,150,50,spatialRef); Roma.extent = extent; } ]]> </mx:Script> <mx:Glow id="glow_red" duration="100" color="#FF0000" alphaFrom="0.5" alphaTo="0" blurXTo="20" blurYTo="20"/> <mx:Glow id="unglow_red" duration="100" color="#FF0000" alphaFrom="0.5" alphaTo="0" blurXTo="5" blurYTo="5"/> <!-- Navigation Tool Bar --> <esri:Navigation id="navToolbar" map="{Roma}"/> <mx:HBox borderStyle="outset" width="344" height="38" top="10" horizontalCenter="163"> <mx:Image height="25" id="ZoomIn" buttonMode="true" source="assets/images/icons/i_zoomin.png" toolTip="Zoom In" click="zoominFunction()" rollOverEffect="{glow_red}" rollOutEffect="{unglow_red}"/> <mx:Image height="25" id="ZoomOut" buttonMode="true" source="assets/images/icons/i_zoomout.png" toolTip="Zoom Out" click="zoomoutFunction()" rollOverEffect="{glow_red}" rollOutEffect="{unglow_red}"/> <mx:Image height="25" id="Pan" buttonMode="true" source="assets/images/icons/i_pan.png" toolTip="Pan" click="panFunction()" rollOverEffect="{glow_red}" rollOutEffect="{unglow_red}"/> <mx:Image height="25" buttonMode="true" source="assets/images/icons/i_zoomfull.png" toolTip="Zoom Full Extent" click="kaneExtent()" rollOverEffect="{glow_red}" rollOutEffect="{unglow_red}"/> <mx:Image height="25" toolTip="Previous Extent" source="assets/images/icons/i_zoomprevious.png" click="navToolbar.zoomToPrevExtent()" enabled="{!navToolbar.isFirstExtent}" rollOverEffect="{glow_red}" rollOutEffect="{unglow_red}"/> <mx:Image height="25" toolTip="Next Extent" source="assets/images/icons/i_zoomnext.png" click="navToolbar.zoomToNextExtent()" enabled="{!navToolbar.isLastExtent}"/> <mx:Image height="25" toolTip="Identify" source="assets/images/icons/i_info.png" buttonMode="true" /> </mx:HBox> this code and the script are ok for web application in flex builder 3 now when i write the same script in flash builder 4 i have many errors in the script relating to functions how and what should be changed script? i wait any response. Thanks guys
... View more
01-13-2011
12:51 PM
|
0
|
1
|
646
|
|
POST
|
Hi Robert i have another question! In the old version of flexviewer(1.3 version) the identify widget recognizes the href function! Now in the 2.1 version of flex viewer this feature is supported? It's supported in the Identify widget that is available on the resource center? thanks
... View more
12-09-2010
05:46 AM
|
0
|
0
|
414
|
|
POST
|
thanks I saw this page only after writing the post. I thought I'd have to change CSS file. thanks
... View more
12-07-2010
01:44 AM
|
0
|
0
|
414
|
|
POST
|
Hi i have a question! But it's possible to change the backgroud color of widgets and viewer? What is the CSS file?
... View more
12-06-2010
05:28 AM
|
0
|
4
|
768
|
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|