Is it possible to remove the ESRI attributions from the Printer Widget outputs?

829
3
Jump to solution
07-20-2017 02:14 PM
BenjaminHarloe
New Contributor II

It is a request from a client. I haven't been able to find much about whether or not this is okay and how it can be done.

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Benjamin,

   Sure you can just add the option to the main config.json like so (line 21):

  "map": {
    "3D": false,
    "2D": true,
    "position": {
      "left": 0,
      "top": 40,
      "right": 0,
      "bottom": 0
    },
    "itemId": "blah blah",
    "mapOptions": {
      "extent": {
        "xmin": -9588410.571286682,
        "ymin": 3964412.481520829,
        "xmax": -9521145.986395817,
        "ymax": 4030454.0739591317,
        "spatialReference": {
          "wkid": 102100
        }
      },
      "showAttribution": false,
      "logo": false,

View solution in original post

3 Replies
RobertScheitlin__GISP
MVP Emeritus

Benjamin,

   Sure you can just add the option to the main config.json like so (line 21):

  "map": {
    "3D": false,
    "2D": true,
    "position": {
      "left": 0,
      "top": 40,
      "right": 0,
      "bottom": 0
    },
    "itemId": "blah blah",
    "mapOptions": {
      "extent": {
        "xmin": -9588410.571286682,
        "ymin": 3964412.481520829,
        "xmax": -9521145.986395817,
        "ymax": 4030454.0739591317,
        "spatialReference": {
          "wkid": 102100
        }
      },
      "showAttribution": false,
      "logo": false,
XanderBakker
Esri Esteemed Contributor

Make sure that to verify if you are allowed to remove the attribution: Esri attribution | ArcGIS for Developers 

BenjaminHarloe
New Contributor II

Thank you very much Robert

0 Kudos