|
POST
|
I do have one question. I was putting the template together and added some dynamic text (date and time). These show up in the template in ArcMap but do not print when I print to PDF (from AGO) after publishing this as a service. The layers show, the legend, north arrow etc. BUT not the date and time from the dynamic text. In addition to the Time and Date I want to create an area that will allow the user to type in some description to add to the map. How do I get this to show up as a parameter when printing function is used in WebApp Builder Template.
... View more
03-11-2015
07:08 AM
|
0
|
0
|
2628
|
|
POST
|
I think that works...just went through and published a service, then created a Map in AGO with model builder...looked like it worked.... THANKS FOR EVERYONES HELP
... View more
03-06-2015
10:36 AM
|
0
|
1
|
2628
|
|
POST
|
Thanks for the info..... I think the video example is what I am after....I think.. What I am trying to do is redesign the layout. I want to add a border and define that's the location for the legend I want to add other things to the map...changing border colors, rounding edged of the data frames etc. I am not using flex so that's where it starts to get confusing...I assume that if I create the .mxd for the layout and simply publish that as a service I will get my desired results? I think.
... View more
03-06-2015
09:46 AM
|
0
|
3
|
2628
|
|
POST
|
What about the link below JoinDataSource | API Reference | ArcGIS API for JavaScript
... View more
03-05-2015
08:10 AM
|
0
|
0
|
1060
|
|
POST
|
Thats what I was figuring.... Question...Can I use this tool for any map service out there....especially one that is not in AGO but on someones own server....I have credentials to view it...can I download it?
... View more
03-05-2015
08:07 AM
|
0
|
0
|
1060
|
|
POST
|
I have a basic print working from the JS API examples... But I now want to take that to the next level and customize the print template to look the way I want it to. Not sure where to start. Anyone have an examples or working examples, thoughts etc.
... View more
03-05-2015
07:33 AM
|
0
|
7
|
6247
|
|
POST
|
Is there a way in JS API to take an existing Map Service and Join it to another data source? Table, DBF etc. Anyone have any examples if this is possible. Sort of an on the fly tabular join to a Map Service.
... View more
03-05-2015
06:56 AM
|
0
|
1
|
4422
|
|
POST
|
I have access to a basic Map Service. I also have a dataset/table with a bunch of additional information. Can I join this Map Service with the table, register it in AGO and use it in a AGO template? In JavaScript API. Can I do this join and then have the data available in my JS App?
... View more
03-05-2015
06:51 AM
|
0
|
4
|
4744
|
|
POST
|
I have a question. I have a huge raster of my state (LANDUSE raster with various categories). I also have a county boundary vector of each county. 1. What I want to do is clip/mask the Raster to each of the counties 2. sort of scroll through each County Record and use its geometry to run the clip/mask 3. then export each individual raster for each clip/mask. I figured that I could use Python to grab each of the records in the County file and then run the mask/clip. Better yet Scroll through each of the Counties Get its geometry Run a statistics on the Raster inside the county and populate fields in the Vector Counties file I would have a field for each of the categories in the Raster The result would give the SQ Miles for each Landuse type in the specific county. But dont know where start. Anyone have any examples?
... View more
02-02-2015
02:13 PM
|
0
|
2
|
4484
|
|
POST
|
THANK YOU FOR YOUR RESPONSE gonna take me a bit to wrap my head around that....still confused... So you have an HTML page all formatted and then pushing variables to that html page? Not understanding how you are moving the data from one page to the next... Whats this calling: returnTractHtmlReportTemplate();
... View more
01-07-2015
12:01 PM
|
0
|
0
|
2974
|
|
POST
|
Has anyone done any kind of reporting from Javascript api? from a selected set of data?
... View more
01-07-2015
07:57 AM
|
0
|
2
|
2975
|
|
POST
|
I am running a couple queries which are returning results to a Grid as seen below. Everything works great....But now I want to push those results into some sort of exportable/viewable report. Maybe a PDF export that can be downloaded. How can I do this and format the report? Has anyone tackled this and have some advise or examples? Thanks and happy new year var query_troutreach = new Query(); query_troutreach.geometry = bufferGeometry; flVAFWIS_troutreach.selectFeatures(query_troutreach, FeatureLayer.SELECTION_NEW, function(results){ }); flVAFWIS_troutreach.queryFeatures(query_troutreach, function (featureSet) { updateGrid_troutreach(featureSet); }); function updateGrid_troutreach(featureSet) { var data = arrayUtils.map(featureSet.features, function (entry, i) { return { Waterbody: entry.attributes.Waterbody, id: entry.attributes.OBJECTID, Comments: entry.attributes.Comments }; }); // If you use a store... dataStore = new Memory({ "data": data, "idProperty": "id" }); gridNoColumnSets_troutreach.set("store", dataStore); gridNoColumnSets_troutreach.startup();
... View more
01-05-2015
01:11 PM
|
0
|
4
|
6687
|
|
POST
|
Thanks Paul...going to get at this soon....but good to know it can be done...sure I will have some future questions.
... View more
12-16-2014
12:50 PM
|
0
|
0
|
898
|
|
POST
|
GOT IT WITH THIS....just moved the If Else inside the arrayUtils.ForEAch to test.... function addShapefileToMap (featureCollection) { var fullExtent; var layers = []; arrayUtils.forEach(allShapeFileLayers, function(layer) { app.map.removeLayer(layer); }); arrayUtils.forEach(featureCollection.layers, function (layer) { var infoTemplateSF = new InfoTemplate("Details", "${*}"); var featureLayerSF = new FeatureLayer(layer, { infoTemplate: infoTemplateSF }); featureLayerSF.on('click', function (event) { app.map.infoWindow.setFeatures([event.graphic]); }); changeRenderer(featureLayerSF); fullExtent = fullExtent ? fullExtent.union(featureLayerSF.fullExtent) : featureLayerSF.fullExtent; layers.push(featureLayerSF); var GeometryTypeShapefile = featureLayerSF.geometryType; //alert(GeometryTypeShapefile); // TEST FOR POLYGON ONLY if (featureLayerSF.geometryType === "esriGeometryPoint" || featureLayerSF.geometryType === "esriGeometryMultipoint") { alert("Point or multiPoint"); } else if (featureLayerSF.geometryType === "esriGeometryLine" || featureLayerSF.geometryType === "esriGeometryPolyline") { alert("line or polyline"); } else if (featureLayerSF.geometryType === "esriGeometryPolygon") { alert("Polygon"); } else { alert("No Geometry"); } }); allShapeFileLayers = layers; app.map.addLayers(allShapeFileLayers); app.map.setExtent(fullExtent.expand(1.25), true); dom.byId('upload-status').innerHTML = ""; dojo.byId("RunQueryShapefile").style.display = "block"; }
... View more
12-15-2014
01:09 PM
|
0
|
0
|
994
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-20-2018 11:09 AM | |
| 1 | 09-10-2018 06:26 AM | |
| 1 | 09-15-2022 11:02 AM | |
| 1 | 05-21-2021 07:35 AM | |
| 1 | 08-09-2022 12:39 PM |
| Online Status |
Offline
|
| Date Last Visited |
09-19-2022
09:23 PM
|