|
POST
|
@Bishrant Thanks for responding. I tried changing the font from var font = new esri.symbol.Font("12pt", esri.symbol.Font.STYLE_NORMAL, esri.symbol.Font.VARIANT_NORMAL, esri.symbol.Font.WEIGHT_BOLD, "Helvetica"); to var font = new Font("20pt", Font.STYLE_ITALIC, Font.VARIANT_NORMAL, Font.WEIGHT_BOLD,"Courier"); but the problem is still the same. Thanks Aditya
... View more
10-03-2021
10:44 PM
|
0
|
2
|
2243
|
|
POST
|
@Noah-Sager I removed the picturemarker symbol and then tried to print it. But the result is still the same. Print result
... View more
09-30-2021
10:02 AM
|
0
|
2
|
2265
|
|
POST
|
Hey @Noah-Sager Thanks for responding. I believe you are talking about the print service to be public. In my case our PrintingTools (GPServer) is hosted publically. Thanks Aditya
... View more
09-30-2021
08:48 AM
|
0
|
0
|
2270
|
|
POST
|
Hi, I am trying to print the text symbol on the map. The textsymbol is available on the map, but when we print it as PDF it's not available. Any idea why it's happening? I am using ArcGIS JavasScript APi 3.26. The text symbol on map. Text symbol not available in the print pdf. Below is the code I am using for text symbol. var symbol = new PictureMarkerSymbol(xxxxxurl+ "Images/marker/inspection-map-markers-no-status.png", 22, 22).setOffset(0, 5); textSymbol = new TextSymbol(stop.attributes.OBJECTID); textSymbol.setFont(font); textSymbol.setColor(new Color([255, 255, 255])); textSymbol.setAlign(TextSymbol.ALIGN_MIDDLE); textSymbol.setAngle(0); textSymbol.setOffset(1, 0); var newGraphic = new Graphic(stop.toJson()); newGraphic.setSymbol(symbol); graphics.add(newGraphic); var Graphictext = new Graphic(stop.toJson()); Graphictext.setSymbol(textSymbol); graphics.add(Graphictext); stop.setSymbol(textSymbol); Thanks Aditya Kumar
... View more
09-30-2021
05:09 AM
|
0
|
11
|
3026
|
|
POST
|
Hi, I am working on route using arcGIS JavaScript API 3.x. I am using the below line of code to get the stops detail ,direction text,time and distance. array.forEach(routeResult.directions.features, function (feature) { var direction = feature.attributes; directions.push(direction); }); //send stop array.forEach(routeResult.stops, function (stop) { finalstops.push(stop.attributes); }); var evtData = { "directions": directions, "totalDriveTime": ttlDriveTime, "totalTime": ttlTime, "totalLength": ttlLength, "stops": finalstops }; events.fun({ eventData: evtData }); console.log("directions:", evtData); While trying to debug I find the direction details(text ) is displaying as expected. But when I try to bind it using event.fun the text value gets changed. Any idea why its changing? And what can be done to make it unchanged? Thanks Aditya
... View more
09-01-2021
12:49 AM
|
0
|
0
|
653
|
|
POST
|
Hi, I am working on the Basic area example. https://developers.arcgis.com/javascript/3/sandbox/sandbox.html?sample=routetask_basic_servicearea. When I use the service area everything works fine, but when I use my custom service area task the polygon result does not get plotted. However, it does not result any error to me. But if I store this polygon and try to intersect, the intersect does work. Below is the output from Custom Service task. How to bring the polygon with polygon symbol on map?
... View more
07-20-2021
10:42 PM
|
0
|
0
|
572
|
|
POST
|
Thanks for the reply @Noah-Sager In our case, we are using Print service from ArcMap. Yes,the map prints correctly with the Esri utility print service, but you are seeing issues with our custom print service
... View more
06-18-2021
11:42 PM
|
0
|
1
|
1442
|
|
POST
|
HI Users, I am using print service from ArcGIS Server 10.7. After printing, the colors are not coming in the way they should come. This is the map and when I print using print map service I get the below image And at times it's not even printing the layers,it just prints the map with base layer. No layers are printed. The map service is not a public service. But when I try with the print service provided by ESRI it works fine. Any configuration that needs to be done in the server? Thanks Aditya kumar
... View more
06-17-2021
12:01 AM
|
0
|
3
|
1491
|
|
POST
|
Hi, I have map services published on federate ArcGIS Server and Portal for ArcGIS.. I want to secure the map services by assigning username and password to them. If I go to ArcGIS Server I am getting the message "The user store is managed by Portal for ArcGIS. To view and modify users, log in to your portal." Any idea how to assign username and password to Mapservice using Portal for ArcGIS. Thanks Aditya
... View more
05-19-2021
09:05 AM
|
0
|
1
|
1311
|
|
POST
|
Hi, I want to add WMS layer as basemap layer. I am using the below code to add the same. greylayer = "https://gis.ices.dk/gis/services/World_Topo_Map/MapServer/WMSServer?request=GetCapabilities&service=WMS"; var ltGreyLayer = new BasemapLayer({ url: greylayer }); var ltGreyBasemap = new Basemap({ layers: [ltGreyLayer], id: 'ltGrey', title: 'Light Grey', thumbnailUrl: 'https://xx/arcgis/rest/services/Metropolis_basemap/MapServer/info/thumbnail' }); config.basemaps.push(ltGreyBasemap); On doing so I am getting the below error while loading the map. Any idea how to fix it? Thanks Aditya
... View more
01-25-2021
11:08 PM
|
0
|
0
|
767
|
|
POST
|
Hi, I am currently developing a simple web application using version 3.17 of the API. I have created a webmap in ArcGIS Online and I want to use this webmap in my web application. I have already added some dynamic map service layer and want to add webmap in the web application. Any advice on the best method to do this would be greatly appreciated! Thanks Aditya Kumar
... View more
12-11-2020
11:50 PM
|
0
|
0
|
778
|
|
POST
|
Hi, I have enabled editor tracked in the data which allows me to capture the last edit date.But in my web application when I am trying to edit the feture I am getting the error in the date feild. Its giving an error please enter valid date format.The date column should get the data automatically because the editing is disabled. Any idea how to fix it? Thanks in advance Aditya Kumar
... View more
12-03-2020
02:11 AM
|
0
|
0
|
626
|
|
POST
|
Hi Noah, Thanks for the response. In ArcGIS Manager I have increased the pooling size of the print service. Now its working
... View more
08-19-2020
06:11 AM
|
2
|
1
|
1512
|
|
POST
|
Hi, I am working on ArcGIS JavaScript 3.x. I have print which behaves differently. Sometimes the print works fine while sometimes the print throws error. You can check the above the screenshot. It's the same extent and same location. Still at one point the print works while for another request it does not work. Below is the error comes when print fails. Any suggestion on this will be of great help. Thanks Aditya Kumar
... View more
08-17-2020
09:08 AM
|
0
|
3
|
1562
|
|
POST
|
Hi, I have a graphic layer on which clustering is taking place. I am removing some graphic from the layer. (Arcgis Javascript APi 3.x) item._graphicsLayer.remove(item._graphicsLayer.graphics[index]); But according to the updated graphics the clustering count is not changing. Its the same always. Any suggestion? Thanks Aditya
... View more
09-16-2019
10:22 AM
|
0
|
0
|
702
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-07-2021 04:11 AM | |
| 2 | 08-19-2020 06:11 AM | |
| 1 | 10-25-2017 05:43 AM | |
| 1 | 11-18-2015 11:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
12-08-2023
12:01 AM
|