POST
|
Hi, I has this issue too. Someone have an idea to solution? Tks!
... View more
04-06-2018
05:55 AM
|
0
|
0
|
1587
|
POST
|
Hi, Alexander! Thanks for your answer! There arent't exception.. just dont't show the simbology that I definned.
... View more
06-09-2017
07:20 AM
|
0
|
1
|
621
|
POST
|
Hi, people. I am having a problem with the renderer from Android SDK when the map is local. I am using the 10.2.8 version. The process is the same to both online and offline mode, but on online mode it works and offline(local map) doesn't. The code to define the renderer is: private UniqueValueRenderer getNotGeometryRenderer() { // Create the line symbols to outline final SimpleLineSymbol notGeometryLineSymbol = new SimpleLineSymbol(ContextCompat.getColor(this, R.color.transparent), 1, SimpleLineSymbol.STYLE.NULL); SimpleLineSymbol lineSymbol = new SimpleLineSymbol(ContextCompat.getColor(this, R.color.black), 1, SimpleLineSymbol.STYLE.SOLID); // Create the fill symbols final SimpleFillSymbol notGeometryFillSymbol = new SimpleFillSymbol(ContextCompat.getColor(this, R.color.transparent), SimpleFillSymbol.STYLE.SOLID); SimpleFillSymbol fillSymbol = new SimpleFillSymbol(ContextCompat.getColor(this, R.color.colorPrimary), SimpleFillSymbol.STYLE.SOLID); // Set the outline to fill symbols notGeometryFillSymbol.setOutline(notGeometryLineSymbol); fillSymbol.setOutline(lineSymbol); // Create the values to set up the renderer List<UniqueValue> values = new ArrayList<UniqueValue>() {{ add(new UniqueValue() {{ setValue(new Object[]{"S"}); setSymbol(notGeometryFillSymbol); }}); }}; // Create and set up the renderer UniqueValueRenderer renderer = new UniqueValueRenderer(); renderer.setField1("SEMGEOMETRIA"); renderer.setUniqueValueInfos(values); renderer.setDefaultSymbol(fillSymbol); return renderer; } To use the renderer I did: private void updatePlotLayerRenderer(Layer layer) { layer.setVisible(false); UniqueValueRenderer renderer = getNotGeometryRenderer(); if (layer instanceof ArcGISFeatureLayer) { ArcGISFeatureLayer arcGISFeatureLayer = (ArcGISFeatureLayer) layer; arcGISFeatureLayer.setRenderer(renderer); arcGISFeatureLayer.refresh(); } else if (layer instanceof FeatureLayer) { FeatureLayer featureLayer = (FeatureLayer) layer; featureLayer.setRenderer(renderer); map.refreshDrawableState(); } layer.setVisible(true); } So I call the updatePlotLayerRenderer method after the local map has been loaded. Has anyone had this problem? Can help me? Thanks!
... View more
06-02-2017
07:51 AM
|
0
|
3
|
1009
|
POST
|
Hi, Michael Clancy. I'm having the same problem, but with the Andriod SDK v10.2.8. Did you have resolved this issue? Thanks
... View more
02-06-2017
10:14 AM
|
0
|
0
|
1476
|
POST
|
Hi, people! I have a python application that need make monitoring of logs, one of them is the AGS's log file... but, how can I access this log file? What's specific path? Is it a XML?? Tks!!
... View more
09-24-2015
10:03 AM
|
0
|
3
|
3198
|
POST
|
Sorry, but I did not understand what you want do. Can you explain better?
... View more
05-22-2015
08:22 AM
|
0
|
1
|
797
|
POST
|
Hi, Eric. I have created that federated search, the link to instructions at wiki is: geoportal-server/components/server/FederatedSearch at master · Esri/geoportal-server · GitHub Best regards, Erik Lima
... View more
05-22-2015
06:23 AM
|
1
|
1
|
648
|
DOC
|
Preparation Resources to Web Application Developer Associate 10.2
... View more
04-24-2015
05:08 AM
|
0
|
0
|
2746
|
DOC
|
Hi, people, According the Github, the tutorial about to configure the Federated Search is homologated to Portal for ArcGIS version 10.2 (https://github.com/Esri/geoportal-server/tree/master/components/server/FederatedSearch). If the configuration is applied to the version 10.3, the federated search does not work. To resolve this problem it is necessary to edit the file "federated-searches-json.js" that is within folder "custom". It is simple, just removing the prefix "esri_" from the IDs, at lines 87 and 89. var targetNode = dojo.byId("arcgisonline_sharing_dijit_SearchResultsSimple_0"); var targetHeaderNode = dojo.byId("resultsLabel"); var targetSortersNode = dojo.byId("arcgisonline_sharing_dijit_Sorter_0"); This is necessary because the Esri's page changed some IDs of HTML elements. After this the federated search works. Sorry my English! Erik Lima Systems Analyst
... View more
03-26-2015
12:50 PM
|
0
|
2
|
4327
|
DOC
|
Scenery Geoportal Server 1.2.5 SO: Oracle Linux Server 6.5 DB: Oracle 11g Problem: make the Haversting with others node, when executing the action "Set as Approved" the page remains loading eternally. I had a problem to run the script for Oracle, within the folder "geoportal-1.2.5/Database Scripts/Oracle". The script "grants_linuxoracle.sh" was perfomed successfuly, however the second script "create_schema_linuxoracle.sh" had problmes to create the INDEXs: CREATE INDEX GPT_RESOURCE_DATA_IDX1 ON GPT_RESOURCE_DATA(ID); CREATE INDEX GPT_COLLECTION_IDX1 ON GPT_COLLECTION(SHORTNAME); The SQL script is attached. This problem occured because before the line to create each INDEX, were created the tables with the fileds ID and SHORTNAME with the property UNIQUE, that the Oracle create automatically a INDEX for each one. So, when the script try to create a new INDEX to the same field, we get the error. To solve this problem I searched for the INDEXs created by Oracle to the fields ID (table GPT_RESOURCE_DATA) and SHORTNAME(table GPT_COLLECTION) and renamed to the correct names: GPT_RESOURCE_DATA_IDX1 and GPT_COLLECTION_IDX1, respectively. Sorry my English, people! Erik Lima Systems Analist
... View more
03-25-2015
06:18 AM
|
0
|
0
|
2956
|
POST
|
Hi, people! I have the Geoportal Server 1.2.5, I have registered an ArcGIS resource successfuly, I tried to register a CSW from IBGE but got this erro: "Unable to connect to the host." URL parameter: http://www.metadados.geo.ibge.gov.br/geonetwork_ibge/srv/por/csw?Request=GetCapabilities&Version=2.0.2&Service=CSW Profile parameter: GeoNetwork CSW 2.0.2 APISO How can I resolve this problem??
... View more
03-19-2015
07:05 AM
|
1
|
1
|
4136
|
Title | Kudos | Posted |
---|---|---|
1 | 05-22-2015 06:23 AM | |
1 | 03-19-2015 07:05 AM | |
1 | 04-24-2015 05:05 AM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|