2
2
3
3
var requiredVersion = '1.10.1' ;
4
4
5
- var OSM = '© <a target="_blank" href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors ' ;
5
+ var OSM = '© <a target="_blank" href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>' ;
6
6
var carto = '© <a target="_blank" href="https://carto.com/">CARTO</a>' ;
7
7
var stamen = '© <a target="_blank" href="https://stamen.com">Stamen Design LLC</a>' ;
8
8
@@ -47,10 +47,7 @@ var stylesNonMapbox = {
47
47
sources : {
48
48
'plotly-carto-positron' : {
49
49
type : 'raster' ,
50
- attribution : [
51
- OSM ,
52
- carto
53
- ] . join ( ', ' ) ,
50
+ attribution : [ carto , OSM ] . join ( ' ' ) ,
54
51
tiles : [ 'https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png' ] ,
55
52
tileSize : 256
56
53
}
@@ -69,10 +66,7 @@ var stylesNonMapbox = {
69
66
sources : {
70
67
'plotly-carto-darkmatter' : {
71
68
type : 'raster' ,
72
- attribution : [
73
- OSM ,
74
- carto
75
- ] . join ( ', ' ) ,
69
+ attribution : [ carto , OSM ] . join ( ' ' ) ,
76
70
tiles : [ 'https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png' ] ,
77
71
tileSize : 256
78
72
}
@@ -91,10 +85,7 @@ var stylesNonMapbox = {
91
85
sources : {
92
86
'plotly-stamen-terrain' : {
93
87
type : 'raster' ,
94
- attribution : [
95
- OSM ,
96
- stamen
97
- ] . join ( ', ' ) ,
88
+ attribution : [ stamen , OSM ] . join ( ' ' ) ,
98
89
tiles : [ 'https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png' ] ,
99
90
tileSize : 256
100
91
}
@@ -113,10 +104,7 @@ var stylesNonMapbox = {
113
104
sources : {
114
105
'plotly-stamen-toner' : {
115
106
type : 'raster' ,
116
- attribution : [
117
- OSM ,
118
- stamen
119
- ] . join ( ', ' ) ,
107
+ attribution : [ stamen , OSM ] . join ( ' ' ) ,
120
108
tiles : [ 'https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png' ] ,
121
109
tileSize : 256
122
110
}
@@ -135,10 +123,7 @@ var stylesNonMapbox = {
135
123
sources : {
136
124
'plotly-stamen-watercolor' : {
137
125
type : 'raster' ,
138
- attribution : [
139
- OSM ,
140
- stamen
141
- ] . join ( ', ' ) ,
126
+ attribution : [ stamen , OSM ] . join ( ' ' ) ,
142
127
tiles : [ 'https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png' ] ,
143
128
tileSize : 256
144
129
}
0 commit comments