|
POST
|
I have two arcgis server "web1" and "web2" with NLB implementation. Accessed through common url i,e www.mydomain.com/arcgis/services in production environment. Nowwe want to have two other environments i,e testing and development. My question is can we go for EDN licence for these environment. Does it has bearing on number of developers. What is difference between normal Arcgis server licence and EDN licence
... View more
05-28-2013
01:38 AM
|
0
|
2
|
568
|
|
POST
|
I want to enforce to use proxy for some arcgis services only in my arcgis java script application
... View more
04-23-2013
04:06 AM
|
0
|
1
|
673
|
|
POST
|
We have distributed architecture in arcgis as shown in attached image now can we create same architecture in 10.1. we are using four machines with two arcgis licencees only used in SOC machine that is Machine 3 and Machine 4
... View more
02-18-2013
11:49 PM
|
0
|
4
|
1161
|
|
POST
|
Actually I'm planning to use PhoneGap along with HTML5. Your help will be appreciated
... View more
02-06-2013
02:01 AM
|
0
|
0
|
560
|
|
POST
|
We are building Arcgis Java Script + HTML5 application now and it will be used on all devices. 1. It should contain login screen to enter into the application and my be we will use same login will be used to authenticate the arcgisservices also
... View more
02-05-2013
01:51 AM
|
0
|
3
|
1161
|
|
POST
|
Thanks All, Let us assume we have to create it for greater that IE7
... View more
12-22-2012
06:52 PM
|
0
|
0
|
1270
|
|
POST
|
We have some business requirements to build application that will run on PC, Mobile, Desktop. Application is about showing data and updating from 4 tables and with 4-5 different interface. 1- Develop one application in HTML5/JS and REST services at back end. This application will work on all end devices 2. Develop application in there native environment like for Android develop it in Android and for Apple develop it in IOS and for PC's Go for HTML5+JS What do you think is better approach.
... View more
12-18-2012
10:48 PM
|
0
|
11
|
2093
|
|
POST
|
I have widget where user can input x and y co-ordinates and select geometry type. I have two graphics layers one for showing the geometry and other where user actually commits the geometry. e,g 1. If user has selected Line geometry type 2. User will enter the x, y and click on "addPointBtn" button and say this is first point then handleaddPointBtnClick will be called and a point graphics will be created and added to _tempgraphicsLayer layer 3. User will enter the x, y and click on "addPointBtn" button and say this is second point then handleaddPointBtnClick will be called and _tempgraphicsLayer will be cleared first and new line graphics will be created using two points and added to _tempgraphicsLayer layer 4. User will enter the x, y and click on "addPointBtn" button and say this is third point then handleaddPointBtnClick will be called and _tempgraphicsLayer will be cleared first and new line graphics will be created using three points and added to _tempgraphicsLayer layer. 5. Now user clicks on finishDrawingBtn button then handlefinishDrawingBtnClick function will be called and _tempgraphicsLayer will be cleared and new line graphics will be created using three points and added to _graphicsLayer layer. Problem: Once I commit the no graphics appears on map [HTML]package widgets.DrawGraphics1.mediators { import com.esri.ags.Graphic; import com.esri.ags.geometry.Extent; import com.esri.ags.geometry.MapPoint; import com.esri.ags.geometry.Polygon; import com.esri.ags.geometry.Polyline; import com.esri.ags.layers.GraphicsLayer; import com.esri.ags.symbols.Symbol; import com.esri.ags.tools.DrawTool; import com.esri.ags.utils.WebMercatorUtil; import de.giscon.swiz.mediators.AbstractViewMediator; import flash.display.Graphics; import flash.events.Event; import flash.events.MouseEvent; import mx.controls.Alert; import mx.controls.Image; import widgets.DrawGraphics1.views.DrawGraphicsView; public class DrawGraphics extends AbstractViewMediator { private var _graphicsLayer:GraphicsLayer; private var _tempgraphicsLayer:GraphicsLayer; private var selectedDrawingIcon:Image; private var selectedDrawingIconfillStyle:Image; private var drawingCircle:Boolean; [Bindable] private var drawingPolygon:Boolean; [Bindable] private var drawingLine:Boolean; [Bindable] private var drawingPoint:Boolean; private var drawMode:String; private var drawSymbol:Symbol; private var drawType:String; private var finishDrawing:Boolean; var mapPointArray:Array = new Array(); public function DrawGraphics() { super(this, DrawGraphicsView); } public function get view():DrawGraphicsView { return _view as DrawGraphicsView; } protected override function widgetConfigurationLoaded(event:Event):void { this.view.addPointBtn.addEventListener(MouseEvent.CLICK, handleaddPointBtnClick); this.view.finishDrawingBtn.addEventListener(MouseEvent.CLICK, handlefinishDrawingBtnClick); addGraphicsLayer(); } protected function handlefinishDrawingBtnClick(event:MouseEvent):void { if(drawingLine == true) { createPolyline(false); } if(drawingPolygon == true) { createPolygon(false); } mapPointArray.length = 0; } protected function handleaddPointBtnClick(event:MouseEvent):void { if(this.view.xCordTxt.text.toString() != "" && this.view.yCordTxt.text.toString() != "") { var mapPoint:MapPoint = new MapPoint(Number(this.view.xCordTxt.text), Number(this.view.yCordTxt.text), baseWidget.map.spatialReference); var webMapPoint:MapPoint = WebMercatorUtil.geographicToWebMercator(mapPoint) as MapPoint; if( drawingPoint == true) { mapPointArray.length = 0; mapPointArray.push(webMapPoint); baseWidget.map.centerAt(webMapPoint); createPoint(false); } if(drawingLine == true) { mapPointArray.push(webMapPoint); if(mapPointArray.length == 1) { createPoint(true); } else { createPolyline(true); } } if(drawingPolygon == true) { mapPointArray.push(webMapPoint); if(mapPointArray.length == 1) { createPoint(true); } else if(mapPointArray.length == 2) { createPolyline(true); } else { createPolygon(true); } } } } private function handlegeomtypeImgClick(event:MouseEvent):void { // apply glow selectedDrawingIcon = Image(event.currentTarget); clearSelectionFilter(); selectedDrawingIcon.filters = [ this.view.glowFilter ]; drawingPolygon = false; drawingLine = false; drawingPoint = false; mapPointArray.length = 0; drawType = selectedDrawingIcon.name; switch (drawType) { case DrawTool.MAPPOINT: { drawingPoint = true; break; } case DrawTool.POLYLINE: { drawingLine = true; break; } case DrawTool.EXTENT: { drawingPolygon = true; break; } } } protected function createPolyline(temp:Boolean):void { if(mapPointArray.length >= 2) { var polyline:Polyline = new Polyline(new Array(mapPointArray), baseWidget.map.spatialReference); var graphics:Graphic = new Graphic(polyline); graphics.symbol = this.view.lineSymbol addGraphic(graphics, temp); } } protected function createPoint(temp:Boolean):void { var mapPoint:MapPoint = mapPointArray[0]; var graphics:Graphic = new Graphic(mapPoint); graphics.symbol = this.view.pointSymbol; addGraphic(graphics, temp); } protected function createPolygon(temp:Boolean):void { if(mapPointArray.length >= 3) { var polygon:Polygon = new Polygon(new Array(mapPointArray), baseWidget.map.spatialReference); var graphics:Graphic = new Graphic(polygon); graphics.symbol = this.view.fillSymbol addGraphic(graphics, temp); } } private function addGraphic(graphics:Graphic, temp:Boolean):void { if(temp == true) { //_tempgraphicsLayer.clear(); GraphicsLayer(baseWidget.map.getLayer("TempDrawGraphicsID")).clear(); var submitGraphics:Graphic = GraphicsUtil.cloneGraphic(graphics); _tempgraphicsLayer.add(submitGraphics); } else { GraphicsLayer(baseWidget.map.getLayer("TempDrawGraphicsID")).clear(); var submitGraphics:Graphic = GraphicsUtil.cloneGraphic(graphics); _graphicsLayer.add(submitGraphics); } } private function addGraphicsLayer():void { _graphicsLayer = new GraphicsLayer(); _graphicsLayer.name = "DrawGraphics"; _graphicsLayer.id = "DrawGraphicsID"; baseWidget.map.addLayer(_graphicsLayer) ; _tempgraphicsLayer = new GraphicsLayer(); _tempgraphicsLayer.name = "TempDrawGraphics"; _tempgraphicsLayer.id = "TempDrawGraphicsID"; baseWidget.map.addLayer(_tempgraphicsLayer) ; } } }[/HTML]
... View more
09-23-2012
10:39 PM
|
0
|
1
|
576
|
|
POST
|
I have two arcgis server "web1" and "web2" with NLB implementation. Accessed through common url i,e www.mydomain.com/arcgis/services 1. My question is can I generate static token for the applications currently i have two separate application and should I generate it using www.mydomain.com/arcgis/services 2. I want to give access to map services to my desktop users. but I would like to hide some map services that are used by flex application. In a nutshell they should see only map services that I create for desktop users? 3. Till now i have not implemented any security because one of our website is for public with out username and password and other is for intranet application. Is this right? 4. We block request for some services (used in intranet application) at firewall . Is this right? 5. We also want these some map services (used in public website) should be accessible to our applications only. Can we do it?
... View more
06-26-2012
10:56 PM
|
0
|
0
|
947
|
|
POST
|
Shafri, do you have Logcat installed? It will show any errors thrown by the emulator (or phone). Since the title bar of the app didn't even load I would expect some sort of an error to show up in Logcat. Also make sure you have v1.1.1 of our SDK. -Andy There are many errors let me start with first one below Netd Unable to bind netlink socket: No such file or directory Netd Unable to open quota2 logging socket Please let me know do I need to connect android phone to machine also.
... View more
06-03-2012
03:15 AM
|
0
|
0
|
800
|
|
POST
|
In the console I can see [2012-05-28 11:42:00 - helloworld] ------------------------------ [2012-05-28 11:42:00 - helloworld] Android Launch! [2012-05-28 11:42:00 - helloworld] adb is running normally. [2012-05-28 11:42:00 - helloworld] Performing com.esri.android.samples.helloworld.HelloworldActivity activity launch [2012-05-28 11:42:00 - helloworld] Automatic Target Mode: launching new emulator with compatible AVD 'AVD-4' [2012-05-28 11:42:00 - helloworld] Launching a new emulator with Virtual Device 'AVD-4' [2012-05-28 11:42:01 - Emulator] creating window 27 27 480 800 [2012-05-28 11:42:04 - helloworld] New emulator found: emulator-5554 [2012-05-28 11:42:04 - helloworld] Waiting for HOME ('android.process.acore') to be launched...
... View more
05-27-2012
11:20 PM
|
0
|
0
|
800
|
|
POST
|
Dear All, I followed every step mentioned in http://help.arcgis.com/en/arcgismobile/10.0/apis/android/help/#/Hello_World_Map/011900000005000000/ But I'm not able to see map. It's just Black screen. Please see the attached screen
... View more
05-16-2012
11:23 PM
|
0
|
5
|
1963
|
|
POST
|
I have declared a control containing you tube player that is shown as info window as follows. <fx:Component className="YouTube_InfoWindowRenderer"> <mx:VBox verticalGap="0" autoLayout="true"> <media:YouTubePlayer id="youTubePlayer" videoID="{data.videoID}" quality1="medium" aspectRatio="widescreen" /> <!--<mx:Label text="Published: {data.published}" paddingTop="0" paddingBottom="0" horizontalCenter="0" />--> </mx:VBox> </fx:Component> On click of the graphics i have created the object of YouTube_InfoWindowRenderer and assign the attribute property. Can you tell me is this correct way the code line below and also same is highlighted in red. Because every time i see this videoID is blank. map.infoWindow.data = graphic.attributes; protected function graphic1_clickHandler(event:MouseEvent):void { // TODO Auto-generated method stub var infoWindowContent:DisplayObject; var infoWindowRenderer:ClassFactory; if (event.currentTarget != null) { var recreate:Boolean = true; map.infoWindow.hide(); var graphic:Graphic = Graphic(event.currentTarget); var infoclickGraphic:Graphic; infoWindowRenderer = new ClassFactory(YouTube_InfoWindowRenderer); infoWindowContent = infoWindowRenderer.newInstance(); map.infoWindow.content = infoWindowContent as UIComponent; map.infoWindow.label = graphic.attributes.title; map.infoWindow.data = graphic.attributes; map.infoWindow.show(myMap.toMapFromStage(event.stageX, event.stageY)); } }
... View more
02-22-2012
01:22 AM
|
0
|
1
|
633
|
|
POST
|
I'm exporting the map into image and i don't want zoom slider in the image so before doing map.zoomSliderVisible = false; const imageSnapshot:ImageSnapshot = ImageSnapshot.captureImage(map,96,decoder,true); But still I find zoomSlider in final image
... View more
02-20-2012
01:43 AM
|
0
|
1
|
603
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-19-2020 12:24 AM | |
| 1 | 05-19-2015 03:21 AM | |
| 1 | 09-01-2014 12:41 AM | |
| 1 | 03-30-2015 04:50 AM | |
| 1 | 08-25-2014 12:41 AM |
| Online Status |
Offline
|
| Date Last Visited |
01-08-2022
12:28 PM
|