Skip to content

Commit

Permalink
merge and update CHANGES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
likangning93 committed May 9, 2018
2 parents 7f45898 + c76001e commit e207da8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Change Log

##### Fixes :wrench:
* Fixed a bug causing custom TilingScheme classes to not be able to use a GeographicProjection. [#6524](https://github.com/AnalyticalGraphicsInc/cesium/pull/6524)
* Fixed race condition causing intermittent crash when changing geometry show value [#3061](https://github.com/AnalyticalGraphicsInc/cesium/issues/3061)
* `ProviderViewModel`s with no category are displayed in an untitled group in `BaseLayerPicker` instead of being labeled as `'Other'` [#6574](https://github.com/AnalyticalGraphicsInc/cesium/pull/6574)
* Fixed a bug causing intermittent crashes with clipping planes due to uninitialized textures. [#6576](https://github.com/AnalyticalGraphicsInc/cesium/pull/6576)

### 1.45 - 2018-05-01
Expand Down
1 change: 1 addition & 0 deletions Source/DataSources/StaticGeometryColorBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ define([
if (defined(unsubscribe)) {
unsubscribe();
this.subscriptions.remove(id);
this.showsUpdated.remove(id);
}
}
};
Expand Down
1 change: 1 addition & 0 deletions Source/DataSources/StaticGeometryPerMaterialBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ define([
if (defined(unsubscribe)) {
unsubscribe();
this.subscriptions.remove(id);
this.showsUpdated.remove(id);
}
}
return this.createPrimitive;
Expand Down
1 change: 1 addition & 0 deletions Source/DataSources/StaticGroundGeometryColorBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ define([
if (defined(unsubscribe)) {
unsubscribe();
this.subscriptions.remove(id);
this.showsUpdated.remove(id);
}
}
};
Expand Down
1 change: 1 addition & 0 deletions Source/DataSources/StaticOutlineGeometryBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ define([
if (defined(unsubscribe)) {
unsubscribe();
this.subscriptions.remove(id);
this.showsUpdated.remove(id);
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion Source/Widgets/BaseLayerPicker/ProviderViewModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ define([
*/
this.iconUrl = options.iconUrl;

this._category = defaultValue(options.category, 'Other');
this._category = defaultValue(options.category, '');

knockout.track(this, ['name', 'tooltip', 'iconUrl']);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ define([
name: 'Mapbox Satellite',
tooltip: 'Mapbox satellite imagery https://www.mapbox.com/maps/',
iconUrl: buildModuleUrl('Widgets/Images/ImageryProviders/mapboxSatellite.png'),
category : 'Other',
creationFunction: function() {
return new MapboxImageryProvider({
mapId: 'mapbox.satellite'
Expand All @@ -76,6 +77,7 @@ define([
name: 'Mapbox Streets',
tooltip: 'Mapbox streets imagery https://www.mapbox.com/maps/',
iconUrl: buildModuleUrl('Widgets/Images/ImageryProviders/mapboxTerrain.png'),
category : 'Other',
creationFunction: function() {
return new MapboxImageryProvider({
mapId: 'mapbox.streets'
Expand All @@ -87,6 +89,7 @@ define([
name: 'Mapbox Streets Classic',
tooltip: 'Mapbox streets basic imagery https://www.mapbox.com/maps/',
iconUrl: buildModuleUrl('Widgets/Images/ImageryProviders/mapboxStreets.png'),
category : 'Other',
creationFunction: function() {
return new MapboxImageryProvider({
mapId: 'mapbox.streets-basic'
Expand All @@ -105,6 +108,7 @@ imagery for Antarctica. The map features 0.3m resolution imagery in the continen
parts of Western Europe from DigitalGlobe. In other parts of the world, 1 meter resolution imagery is available from GeoEye IKONOS, \
i-cubed Nationwide Prime, Getmapping, AeroGRID, IGN Spain, and IGP Portugal. Additionally, imagery at different resolutions has been \
contributed by the GIS User Community.\nhttp://www.esri.com',
category : 'Other',
creationFunction : function() {
return new ArcGisMapServerImageryProvider({
url : 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer',
Expand All @@ -121,6 +125,7 @@ This worldwide street map presents highway-level data for the world. Street-leve
Canada; Japan; most countries in Europe; Australia and New Zealand; India; parts of South America including Argentina, Brazil, \
Chile, Colombia, and Venezuela; Ghana; and parts of southern Africa including Botswana, Lesotho, Namibia, South Africa, and Swaziland.\n\
http://www.esri.com',
category : 'Other',
creationFunction : function() {
return new ArcGisMapServerImageryProvider({
url : 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer',
Expand All @@ -136,6 +141,7 @@ http://www.esri.com',
This web map contains the National Geographic World Map service. This map service is designed to be used as a general reference map \
for informational and educational purposes as well as a basemap by GIS professionals and other users for creating web maps and web \
mapping applications.\nhttp://www.esri.com',
category : 'Other',
creationFunction : function() {
return new ArcGisMapServerImageryProvider({
url : 'https://services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/',
Expand All @@ -149,6 +155,7 @@ mapping applications.\nhttp://www.esri.com',
iconUrl : buildModuleUrl('Widgets/Images/ImageryProviders/openStreetMap.png'),
tooltip : 'OpenStreetMap (OSM) is a collaborative project to create a free editable map \
of the world.\nhttp://www.openstreetmap.org',
category : 'Other',
creationFunction : function() {
return createOpenStreetMapImageryProvider({
url : 'https://a.tile.openstreetmap.org/'
Expand All @@ -161,6 +168,7 @@ of the world.\nhttp://www.openstreetmap.org',
iconUrl : buildModuleUrl('Widgets/Images/ImageryProviders/stamenWatercolor.png'),
tooltip : 'Reminiscent of hand drawn maps, Stamen watercolor maps apply raster effect \
area washes and organic edges over a paper texture to add warm pop to any map.\nhttp://maps.stamen.com',
category : 'Other',
creationFunction : function() {
return createOpenStreetMapImageryProvider({
url : 'https://stamen-tiles.a.ssl.fastly.net/watercolor/',
Expand All @@ -173,6 +181,7 @@ area washes and organic edges over a paper texture to add warm pop to any map.\n
name : 'Stamen Toner',
iconUrl : buildModuleUrl('Widgets/Images/ImageryProviders/stamenToner.png'),
tooltip : 'A high contrast black and white map.\nhttp://maps.stamen.com',
category : 'Other',
creationFunction : function() {
return createOpenStreetMapImageryProvider({
url : 'https://stamen-tiles.a.ssl.fastly.net/toner/',
Expand Down

0 comments on commit e207da8

Please sign in to comment.