Hi,
I am using ArcGIS API for Javascript 3.32 to develop a web application https://enstools.electionsnovascotia.ca/mapguidebook/. For “Print map” function, I published our custom Print service using Pro. I noticed an issue that some labels disappear on Printed map. The following map was shown in the web application. The attached pdf file is the printed map. You can notice that the labels ”Beech Hill Rd”, “Henry Hatt Rd” don’t show on the printed map.

This is my Print template code:
// create the print templates
var templates = arrayUtils.map(layouts, function (lo) {
var t = new PrintTemplate();
t.layout = lo.name;
t.label = lo.label;
t.format = lo.format;
t.layoutOptions = lo.options;
t.preserveScale = true;
t.exportOptions = {
width: 800,
height: 1100,
dpi: 500
};
return t;
});
Do you know what reason causes this issue? How to fix it? To test it, you can choose "08" for "Electoral District" and "006" for "Polling Division". Thanks for your help.
Saili