Skip to content

Commit 08848b4

Browse files
authored
Merge pull request #6331 from AnalyticalGraphicsInc/html-credits
HTML Credits
2 parents 58ca0c2 + 6e53d5c commit 08848b4

32 files changed

+2080
-656
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Change Log
99
##### Deprecated :hourglass_flowing_sand:
1010
* `ClippingPlaneCollection` is now supported in Internet Explorer, so `ClippingPlaneCollection.isSupported` has been deprecated and will be removed in Cesium 1.45.
1111
* `ClippingPlaneCollection` should now be used with `ClippingPlane` objects instead of `Plane`. Use of `Plane` objects has been deprecated and will be removed in Cesium 1.45.
12+
* `Credit` now takes an `html` and `showOnScreen` parameters instead of an `options` object. Use of the `options` parameter is deprecated and will be removed in Cesium 1.46.
13+
* `Credit.text`, `Credit.imageUrl` and `Credit.link` properties have all been deprecated and will be removed in Cesium 1.46. Use `Credit.html` to retrieve the credit content.
14+
* `Credit.hasImage` and `Credit.hasLink` functions have been deprecated and will be removed in Cesium 1.46.
1215

1316
##### Additions :tada:
1417
* Added support for glTF models with [Draco geometry compression](https://github.com/fanzhanggoogle/glTF/blob/KHR_mesh_compression/extensions/Khronos/KHR_draco_mesh_compression/README.md).
@@ -23,6 +26,7 @@ Change Log
2326
* sourceType specifies the type of data source if the URL doesn't have a known file extension.
2427
* flyTo=false optionally disables the automatic flyTo after loading the data source.
2528
* Added a multi-part CZML example to Sandcastle. [#6320](https://github.com/AnalyticalGraphicsInc/cesium/pull/6320)
29+
* `Credit` has been modified to take an HTML string as the credit content [#6331](https://github.com/AnalyticalGraphicsInc/cesium/pull/6331)
2630
* Added support for ordering in `DataSourceCollection` [#6316](https://github.com/AnalyticalGraphicsInc/cesium/pull/6316)
2731
* All ground geometry from one `DataSource` will render in front of all ground geometry from another `DataSource` in the same collection with a lower index.
2832
* Use `DataSourceCollection.raise`, `DataSourceCollection.lower`, `DataSourceCollection.raiseToTop` and `DataSourceCollection.lowerToBottom` functions to change the ordering of a `DataSource` in the collection.

LICENSE.md

+28
Original file line numberDiff line numberDiff line change
@@ -686,6 +686,34 @@ https://github.com/google/draco
686686
>License for the specific language governing permissions and limitations under
687687
>the License.
688688
689+
### JSXSS
690+
691+
https://github.com/leizongmin/js-xss
692+
693+
> Copyright (c) 2012-2017 Zongmin Lei(雷宗民) <leizongmin@gmail.com>
694+
> http://ucdok.com
695+
>
696+
> The MIT License
697+
>
698+
> Permission is hereby granted, free of charge, to any person obtaining
699+
> a copy of this software and associated documentation files (the
700+
> "Software"), to deal in the Software without restriction, including
701+
> without limitation the rights to use, copy, modify, merge, publish,
702+
> distribute, sublicense, and/or sell copies of the Software, and to
703+
> permit persons to whom the Software is furnished to do so, subject to
704+
> the following conditions:
705+
>
706+
> The above copyright notice and this permission notice shall be
707+
> included in all copies or substantial portions of the Software.
708+
>
709+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
710+
> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
711+
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
712+
> NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
713+
> LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
714+
> OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
715+
> WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
716+
689717
Tests
690718
=====
691719

18.4 KB
Loading
4.14 KB
Loading
7.52 KB
Loading

Source/Core/BingMapsApi.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ define([
2828

2929
var printedBingWarning = false;
3030
var errorCredit;
31-
var errorString = 'This application is using Cesium\'s default Bing Maps key. Please create a new key for the application as soon as possible and prior to deployment by visiting https://www.bingmapsportal.com/, and provide your key to Cesium by setting the Cesium.BingMapsApi.defaultKey property before constructing the CesiumWidget or any other object that uses the Bing Maps API.';
31+
var errorString = '<b>This application is using Cesium\'s default Bing Maps key. Please create a new key for the application as soon as possible and prior to deployment by visiting <a href="https://www.bingmapsportal.com/">https://www.bingmapsportal.com/</a>, and provide your key to Cesium by setting the Cesium.BingMapsApi.defaultKey property before constructing the CesiumWidget or any other object that uses the Bing Maps API.</b>';
3232

3333
BingMapsApi.getKey = function(providedKey) {
3434
if (defined(providedKey)) {
@@ -52,10 +52,7 @@ define([
5252
}
5353

5454
if (!defined(errorCredit)) {
55-
errorCredit = new Credit({
56-
text : errorString,
57-
showOnScreen : true
58-
});
55+
errorCredit = new Credit(errorString, true);
5956
}
6057

6158
return errorCredit;

Source/Core/CesiumTerrainProvider.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ define([
131131

132132
var credit = options.credit;
133133
if (typeof credit === 'string') {
134-
credit = new Credit({text: credit});
134+
credit = new Credit(credit);
135135
}
136136
this._credit = credit;
137137

@@ -163,12 +163,11 @@ define([
163163

164164
var uri = new Uri(metadataResource.url);
165165
if (uri.authority === 'assets.agi.com') {
166-
var deprecationText = 'The STK World Terrain tileset is deprecated and will be available until September 1, 2018';
166+
var deprecationText = 'The STK World Terrain tileset is deprecated and will be available until September 1, 2018.';
167167
var deprecationLinkText = 'Check out the new high-resolution Cesium World Terrain';
168168
var deprecationLink = 'https://cesium.com/blog/2018/03/01/introducing-cesium-world-terrain/';
169169
that._tileCredits = [
170-
new Credit({ text: deprecationText, showOnScreen: true }),
171-
new Credit({ text: deprecationLinkText, link: deprecationLink, showOnScreen: true })
170+
new Credit('<span>' + deprecationText + '</span> <a href="' + deprecationLink + '>' + deprecationLinkText + '</a>', true)
172171
];
173172
deprecationWarning('assets.agi.com', deprecationText + ' ' + deprecationLinkText + ' ' + deprecationLink);
174173
} else {
@@ -327,7 +326,7 @@ define([
327326
}
328327
}
329328

330-
var layerJsonCredit = new Credit({ text: attribution });
329+
var layerJsonCredit = new Credit(attribution);
331330

332331
if (defined(that._tileCredits)) {
333332
that._tileCredits.push(layerJsonCredit);

Source/Core/Credit.js

+124-70
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,26 @@
11
define([
2+
'../ThirdParty/xss',
23
'./defaultValue',
34
'./defined',
45
'./defineProperties',
6+
'./deprecationWarning',
57
'./DeveloperError'
68
], function(
9+
xss,
710
defaultValue,
811
defined,
912
defineProperties,
13+
deprecationWarning,
1014
DeveloperError) {
1115
'use strict';
1216

1317
var nextCreditId = 0;
1418
var creditToId = {};
1519

16-
function getElement(credit) {
17-
var element = document.createElement('span');
18-
var text = credit.text;
19-
var link = credit.link;
20-
var a;
21-
if (credit._hasImage) {
22-
var content = document.createElement('img');
23-
content.src = credit.imageUrl;
24-
if (defined(text)) {
25-
content.alt = text;
26-
content.title = text;
27-
}
28-
if (credit._hasLink) {
29-
a = document.createElement('a');
30-
a.appendChild(content);
31-
a.href = link;
32-
a.target = '_blank';
33-
element.appendChild(a);
34-
} else {
35-
element.appendChild(content);
36-
}
37-
element.className = 'cesium-credit-image';
38-
} else {
39-
if (credit._hasLink) {
40-
a = document.createElement('a');
41-
a.textContent = text;
42-
a.href = link;
43-
a.target = '_blank';
44-
element.appendChild(a);
45-
} else {
46-
element.textContent = text;
47-
}
48-
element.className = 'cesium-credit-text';
49-
}
50-
return element;
51-
}
52-
5320
/**
5421
* A credit contains data pertaining to how to display attributions/credits for certain content on the screen.
55-
* @param {Object} [options] An object with the following properties
56-
* @param {String} [options.text] The text to be displayed on the screen if no imageUrl is specified.
57-
* @param {String} [options.imageUrl] The source location for an image
58-
* @param {String} [options.link] A URL location for which the credit will be hyperlinked
59-
* @param {Boolean} [options.showOnScreen=false] If true, the credit will be visible in the main credit container. Otherwise, it will appear in a popover
22+
* @param {String} html An string representing an html code snippet (can be text only)
23+
* @param {Boolean} [showOnScreen=false] If true, the credit will be visible in the main credit container. Otherwise, it will appear in a popover
6024
*
6125
* @alias Credit
6226
* @constructor
@@ -71,38 +35,74 @@ define([
7135
* link : 'https://cesiumjs.org/'
7236
* });
7337
*/
74-
function Credit(options) {
75-
options = defaultValue(options, defaultValue.EMPTY_OBJECT);
38+
function Credit(html, showOnScreen) {
39+
var id;
40+
var key;
41+
if (typeof html !== 'string') {
42+
var options = defaultValue(html, defaultValue.EMPTY_OBJECT);
43+
deprecationWarning('Credit options', 'The options parameter has been deprecated and will be removed in Cesium 1.46. Instead, pass in an HTML string (or a string of text)');
44+
showOnScreen = defaultValue(options.showOnScreen, showOnScreen);
45+
var text = options.text;
46+
var imageUrl = options.imageUrl;
47+
var link = options.link;
7648

77-
var text = options.text;
78-
var imageUrl = options.imageUrl;
79-
var link = options.link;
80-
var showOnScreen = defaultValue(options.showOnScreen, false);
49+
var hasLink = (defined(link));
50+
var hasImage = (defined(imageUrl));
51+
var hasText = (defined(text));
8152

82-
var hasLink = (defined(link));
83-
var hasImage = (defined(imageUrl));
84-
var hasText = (defined(text));
53+
//>>includeStart('debug', pragmas.debug);
54+
if (!hasText && !hasImage && !hasLink) {
55+
throw new DeveloperError('options.text, options.imageUrl, or options.link is required.');
56+
}
57+
//>>includeEnd('debug');
8558

86-
//>>includeStart('debug', pragmas.debug);
87-
if (!hasText && !hasImage && !hasLink) {
88-
throw new DeveloperError('options.text, options.imageUrl, or options.link is required.');
89-
}
90-
//>>includeEnd('debug');
59+
if (!hasText && !hasImage) {
60+
text = link;
61+
}
9162

92-
if (!hasText && !hasImage) {
93-
text = link;
94-
}
63+
this._text = text;
64+
this._imageUrl = imageUrl;
65+
this._link = link;
66+
this._hasLink = hasLink;
67+
this._hasImage = hasImage;
9568

96-
this._text = text;
97-
this._imageUrl = imageUrl;
98-
this._link = link;
99-
this._hasLink = hasLink;
100-
this._hasImage = hasImage;
101-
this._showOnScreen = showOnScreen;
69+
var element = document.createElement('span');
70+
var a;
71+
if (hasImage) {
72+
var content = document.createElement('img');
73+
content.src = imageUrl;
74+
if (defined(text)) {
75+
content.alt = text;
76+
content.title = text;
77+
}
78+
if (hasLink) {
79+
a = document.createElement('a');
80+
a.appendChild(content);
81+
a.href = link;
82+
a.target = '_blank';
83+
element.appendChild(a);
84+
} else {
85+
element.appendChild(content);
86+
}
87+
element.className = 'cesium-credit-image';
88+
} else {
89+
if (hasLink) {
90+
a = document.createElement('a');
91+
a.textContent = text;
92+
a.href = link;
93+
a.target = '_blank';
94+
element.appendChild(a);
95+
} else {
96+
element.textContent = text;
97+
}
98+
element.className = 'cesium-credit-text';
99+
}
102100

103-
// Credits are immutable so generate an id to use to optimize equal()
104-
var id;
105-
var key = JSON.stringify([text, imageUrl, link]);
101+
html = '<span>' + element.innerHTML + '</span>';
102+
key = JSON.stringify([text, imageUrl, link]);
103+
} else {
104+
key = html;
105+
}
106106

107107
if (defined(creditToId[key])) {
108108
id = creditToId[key];
@@ -111,12 +111,27 @@ define([
111111
creditToId[key] = id;
112112
}
113113

114-
this._id = id;
114+
showOnScreen = defaultValue(showOnScreen, false);
115115

116+
// Credits are immutable so generate an id to use to optimize equal()
117+
this._id = id;
118+
this._html = html;
119+
this._showOnScreen = showOnScreen;
116120
this._element = undefined;
117121
}
118122

119123
defineProperties(Credit.prototype, {
124+
/**
125+
* The credit content
126+
* @memberof Credit.prototype
127+
* @type {String}
128+
* @readonly
129+
*/
130+
html : {
131+
get : function() {
132+
return this._html;
133+
}
134+
},
120135
/**
121136
* The credit text
122137
* @memberof Credit.prototype
@@ -125,6 +140,7 @@ define([
125140
*/
126141
text : {
127142
get : function() {
143+
deprecationWarning('Credit.text', 'Credit.text is deprecated and will be removed in Cesium 1.46. Instead, use Credit.html to get the credit content.');
128144
return this._text;
129145
}
130146
},
@@ -137,6 +153,7 @@ define([
137153
*/
138154
imageUrl : {
139155
get : function() {
156+
deprecationWarning('Credit.imageUrl', 'Credit.imageUrl is deprecated and will be removed in Cesium 1.46. Instead, use Credit.html to get the credit content.');
140157
return this._imageUrl;
141158
}
142159
},
@@ -149,6 +166,7 @@ define([
149166
*/
150167
link : {
151168
get : function() {
169+
deprecationWarning('Credit.link', 'Credit.link is deprecated and will be removed in Cesium 1.46. Instead, use Credit.html to get the credit content.');
152170
return this._link;
153171
}
154172
},
@@ -187,7 +205,19 @@ define([
187205
element: {
188206
get: function() {
189207
if (!defined(this._element)) {
190-
this._element = getElement(this);
208+
var html = this.html;
209+
html = xss(html);
210+
211+
var div = document.createElement('div');
212+
div.style.display = 'inline';
213+
div.innerHTML = html;
214+
215+
var links = div.querySelectorAll('a');
216+
for (var i = 0; i < links.length; i++) {
217+
links[i].setAttribute('target', '_blank');
218+
}
219+
220+
this._element = div;
191221
}
192222
return this._element;
193223
}
@@ -200,6 +230,7 @@ define([
200230
* @returns {Boolean}
201231
*/
202232
Credit.prototype.hasImage = function() {
233+
deprecationWarning('Credit.hasImage', 'Credit.hasImage is deprecated and will be removed in Cesium 1.46.');
203234
return this._hasImage;
204235
};
205236

@@ -209,6 +240,7 @@ define([
209240
* @returns {Boolean}
210241
*/
211242
Credit.prototype.hasLink = function() {
243+
deprecationWarning('Credit.hasLink', 'Credit.hasLink is deprecated and will be removed in Cesium 1.46.');
212244
return this._hasLink;
213245
};
214246

@@ -236,5 +268,27 @@ define([
236268
return Credit.equals(this, credit);
237269
};
238270

271+
/**
272+
* @private
273+
* @param attribution
274+
* @return {Credit}
275+
*/
276+
Credit.getIonCredit = function(attribution) {
277+
var credit;
278+
var showOnScreen = defined(attribution.collapsible) && !attribution.collapsible;
279+
if (defined(attribution.html)) {
280+
credit = new Credit(attribution.html, showOnScreen);
281+
} else {
282+
credit = new Credit({
283+
text: attribution.text,
284+
link: attribution.url,
285+
imageUrl: attribution.image
286+
}, showOnScreen);
287+
}
288+
289+
credit._isIon = credit.html.indexOf('ion-credit.png') !== -1;
290+
return credit;
291+
};
292+
239293
return Credit;
240294
});

0 commit comments

Comments
 (0)