POST
|
I used the following code snippet to print the map on the document but I cannot limit the map to a certain frame. var mapd = document.getElementById("map").innerHTML; newWin.document.write("<table><tr><td></td><td><div id='divp'>"+mapd+"</div></td><td></td></tr></table>");
... View more
12-24-2014
08:35 PM
|
0
|
0
|
116
|
POST
|
Dear, A vendor is asking about a staging license for ArcGIS for Server 10.2 and we do have a concurrent use license currently. The vendor is in the testing phase currently on an application. Before investing on a staging license, we made a small research on the subject and this is the result : Concurrent use - An organization licenses the right to use for x number of users. - Copy protection technology controls access to software. Staging License - Licensed per server. - License fee is per Core. - For Testing prior to commercial deployment. Ref. http://proceedings.esri.com/library/userconf/devsummit08/papers/esri_product_licensing.pdf The documentation above is overdated(2008) I was wondering if I could find something more relevant to the software version(10.2) I am using. I cannot find much documentation on the differences in order to decide if it is suitable to work with the concurrent use license or the staging. Please advice accordingly.
... View more
12-21-2014
10:39 PM
|
0
|
1
|
4004
|
POST
|
Dear All, I am working on reports related to tables and statistics. I am conducting a search through dropdownlist selections and queries which is working just fine: var selectQuery = new esri.tasks.Query(); selectQuery.where = "NAME_ENGLISH LIKE '" + evt.target.value + "'"; selectQuery.outFields = ["*"]; var upc_fi_selectQuery = new esri.tasks.Query(); upc_fi_selectQuery.spatialRelationship = selectQuery.SPATIAL_REL_CONTAINS; AttFeatureLayer.selectFeatures(upc_fi_selectQuery, esri.layers.FeatureLayer.SELECTION_NEW, function (features) { // do this and that } After that I am running a script to write tables in a Windows document as follows (for instance) : var newWin = window.open(""); newWin.document.write ("<label style='font-family: Trebuchet MS; font-weight:bold; font-size: 18px; color: #C0504D;'>Tourism Ecosystems Zone Details</label>"); newWin.document.write(Rep_T_tbTCA.outerHTML); // writing a table in a pdf document. newWin.document.write ('<br></br>'); newWin.document.write("<label style='font-family: Trebuchet MS; font-weight:bold; font-size: 18px; color: #C0504D; page-break-after: always'>Location of the the feature</label>"); newWin.document.write ('<br></br>'); Till now everything works just fine. The map now is zoomed to the selected feature. Now, I need to print the current extent of the map inside the pdf document: HTML <div id="map" class="map" align="justify" data-dojo-type="dijit/layout/ContentPane"> </div> Javascript .... var mapd = document.createElement("div"); mapd.id = "map_rep"; mapd.appendChild(document.getElementById("map")); newWin.document.write(mapd); .... I am getting the following as a response, which is not required result: [object HTMLDivElement] I have seen other possibilities involving geoprocessing printing task using ArcGIS Online maps which is not the case for me as I am using a map published as a map service and I have not interest in going through ArcGIS Online. Please kindly advice ! Specs: - ArcGIS Server 10.1 Enterprise. - JS API 3.11
... View more
12-20-2014
11:37 PM
|
1
|
11
|
4498
|
POST
|
Good morning everyone, Do you think ETL tools/Data Interoperability Extension could be helpful doing these transformations : * FLT to OBJ OR * FLT to DAE as per your experience? I have found some converters online but I don't much trust these, due to how sensitive is the data that I am using currently. P.S: I just discovered that there is this function in ArcMap which is importing 3D formats which includes also (.flt) format as well which is quite interesting also for me at this stage.
... View more
12-07-2014
10:20 PM
|
0
|
0
|
2839
|
POST
|
Thank you for your quick response Matthias ! By the way, do you think ETL tools could be helpful doing these transformations : * FLT to OBJ or * FLT to DAE as per your experience? I have found some converters online but I don't much trust these, due to how sensitive is the data that I am using P.S: I just discovered that there is this function in ArcMap which is importing 3D formats which includes also (.flt) format as well which is quite interesting also for me at this stage.
... View more
11-26-2014
08:29 AM
|
0
|
3
|
47
|
POST
|
Hi everyone, I have the following formats and I want to use them in Esri City Engine : * .flt (FLT File) - OpenFlight - Wikipedia, the free encyclopedia * .rgb (SGI Image) & .rgb.attr(ATTR File) Do you have any idea on how to use these into Esri CityEngine because it seems to me that these files formats are not a possibility in the software itself. Is there any workaround to this involving ETL tools or models? If Yes, please give me the details Otherwise, please provide a suitable solution to have this data on Esri CityEngine. Ref. CityEngine 2012.1 Advanced. Regards.
... View more
11-23-2014
12:42 AM
|
0
|
0
|
419
|
POST
|
Hi everyone, I have the following formats and I want to use them in Esri City Engine : * .flt (FLT File) - OpenFlight - Wikipedia, the free encyclopedia * .rgb (SGI Image) & .rgb.attr(ATTR File) Do you have any idea on how to use these into Esri CityEngine because it seems to me that these files formats are not a possibility in the software itself. Is there any workaround to this involving ETL tools or models? If Yes, please give me the details Otherwise, please provide a suitable solution to have this data on Esri CityEngine. Ref. CityEngine 2012.1 Advanced. Regards.
... View more
11-23-2014
12:40 AM
|
0
|
5
|
3689
|
POST
|
Hi everyone, I am consuming an ArcGIS Dynamic Map service and 2 basemaps on which I want to apply a BasemapToggle. Any idea why this code is not working? //Toggle //console.log(esriConfig.defaults.map.basemaps); esriConfig.defaults.map.basemaps.BaseMapEnglish = { baseMapLayers: [ { url: " http://geoportal.abudhabi.ae/rest/services/BaseMapEnglish/MapServer " } ], title: "BaseMapEnglish" }; esriConfig.defaults.map.basemaps.BaseMapSatellite = { baseMapLayers: [ { url: " http://geoportal.abudhabi.ae/rest/services/BaseMapSatellite1m/MapServer " } ], title: "BaseMapSatellite" }; console.log(esriConfig.defaults.map.basemaps); var toggle = new BasemapToggle({ map: map, basemap: "BaseMapSatellite", basemaps: { BaseMapEnglish: { label: "BaseMapEnglish", url: " http://www.delorme.com/images/homepage/dbm_icon.jpg " }, BaseMapSatellite: { label: "BaseMapSatellite", url: " http://js.arcgis.com/3.7/js/esri/dijit/images/basemaps/topo.jpg " } } }, "BasemapToggle"); toggle.startup(); //Toggle var MDServiceLayer = new esri.layers.ArcGISDynamicMapServiceLayer(" http://10.10.1.108:6080/arcgis/rest/services/ZS_MapDoc/MapServer ", { "id": 'ZS', "opacity": 0.6 }); var basemap = new esri.layers.ArcGISTiledMapServiceLayer(" http://geoportal.abudhabi.ae/rest/services/BaseMapSatellite50cm/MapServer "); map.addLayer(basemap); map.addLayer(MDServiceLayer); Please help. I basically referred to the following URL for my work but it doesn't seem to be working from my side. Basemap Toggle | ArcGIS API for JavaScript
... View more
11-06-2014
07:57 AM
|
0
|
4
|
2350
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|