-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2162 from AnalyticalGraphicsInc/simplestyle
Simplestyle
- Loading branch information
Showing
16 changed files
with
3,358 additions
and
70 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"> <!-- Use Chrome Frame in IE --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"> | ||
<meta name="description" content="Load GeoJSON with simplestyle information."> | ||
<meta name="cesium-sandcastle-labels" content="Showcases, DataSources"> | ||
<title>Cesium Demo</title> | ||
<script type="text/javascript" src="../Sandcastle-header.js"></script> | ||
<script type="text/javascript" src="../../../ThirdParty/requirejs-2.1.9/require.js"></script> | ||
<script type="text/javascript"> | ||
require.config({ | ||
baseUrl : '../../../Source', | ||
waitSeconds : 60 | ||
}); | ||
</script> | ||
</head> | ||
<body class="sandcastle-loading" data-sandcastle-bucket="bucket-requirejs.html"> | ||
<style> | ||
@import url(../templates/bucket.css); | ||
</style> | ||
<div id="cesiumContainer" class="fullSize"></div> | ||
<div id="loadingOverlay"><h1>Loading...</h1></div> | ||
<div id="toolbar"></div> | ||
<script id="cesium_sandcastle_script"> | ||
function startup(Cesium) { | ||
"use strict"; | ||
//Sandcastle_Begin | ||
//Create the viewer | ||
//Create the viewer | ||
var viewer = new Cesium.Viewer('cesiumContainer', {timeline : false, animation : false}); | ||
Cesium.viewerEntityMixin(viewer); | ||
|
||
//Load a GeoJSON file containing simplestyle information. | ||
//To learn more about simplestyle, see https://github.com/mapbox/simplestyle-spec | ||
viewer.dataSources.add(Cesium.GeoJsonDataSource.fromUrl('../../SampleData/simplestyles.geojson')); | ||
|
||
//Set the camera to view the data. | ||
var camera = viewer.scene.camera; | ||
camera.viewRectangle(Cesium.Rectangle.fromDegrees(-0.1, 0.2, 1.5, -1.1)); | ||
|
||
//In this particular example, the name of each entity is set to its maki icon identifier. | ||
//Clicking on each billboard will show it's identifier in the InfoBox. | ||
//Sandcastle_End | ||
Sandcastle.finishedLoading(); | ||
} | ||
if (typeof Cesium !== "undefined") { | ||
startup(Cesium); | ||
} else if (typeof require === "function") { | ||
require(["Cesium"], startup); | ||
} | ||
</script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"> <!-- Use Chrome Frame in IE --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"> | ||
<meta name="description" content="Load GeoJSON with simplestyle information."> | ||
<meta name="cesium-sandcastle-labels" content="Showcases, Tutorial"> | ||
<title>Cesium Demo</title> | ||
<script type="text/javascript" src="../Sandcastle-header.js"></script> | ||
<script type="text/javascript" src="../../../ThirdParty/requirejs-2.1.9/require.js"></script> | ||
<script type="text/javascript"> | ||
require.config({ | ||
baseUrl : '../../../Source', | ||
waitSeconds : 60 | ||
}); | ||
</script> | ||
</head> | ||
<body class="sandcastle-loading" data-sandcastle-bucket="bucket-requirejs.html"> | ||
<style> | ||
@import url(../templates/bucket.css); | ||
</style> | ||
<div id="cesiumContainer" class="fullSize"></div> | ||
<div id="loadingOverlay"><h1>Loading...</h1></div> | ||
<div id="toolbar"></div> | ||
<script id="cesium_sandcastle_script"> | ||
function startup(Cesium) { | ||
"use strict"; | ||
//Sandcastle_Begin | ||
var viewer = new Cesium.Viewer('cesiumContainer', {timeline : false, animation : false}); | ||
|
||
var pinBuilder = new Cesium.PinBuilder(); | ||
var billboardCollection = new Cesium.BillboardCollection(); | ||
viewer.scene.primitives.add(billboardCollection); | ||
|
||
//Create a blank, solid colored pin. | ||
billboardCollection.add({ | ||
image : pinBuilder.fromColor(Cesium.Color.ROYALBLUE, 48), | ||
verticalOrigin : Cesium.VerticalOrigin.BOTTOM, | ||
position : Cesium.Cartesian3.fromDegrees(-75.170726, 39.9208667, 0) | ||
}); | ||
|
||
//Create a black pin labeled with a quesiton mark. | ||
billboardCollection.add({ | ||
image : pinBuilder.fromText('?', Cesium.Color.BLACK, 48), | ||
verticalOrigin : Cesium.VerticalOrigin.BOTTOM, | ||
position : Cesium.Cartesian3.fromDegrees(-75.1698529, 39.9220071, 0) | ||
}); | ||
|
||
//Create a green pin labeled with a png file on the server. | ||
var url = Cesium.buildModuleUrl('Assets/Textures/maki/grocery.png'); | ||
Cesium.when(pinBuilder.fromUrl(url, Cesium.Color.GREEN, 48), function(canvas){ | ||
billboardCollection.add({ | ||
image : canvas, | ||
verticalOrigin : Cesium.VerticalOrigin.BOTTOM, | ||
position : Cesium.Cartesian3.fromDegrees(-75.1705217, 39.921786, 0) | ||
}); | ||
}); | ||
|
||
//Create a red pin representing a hospital from the maki icon set. | ||
Cesium.when(pinBuilder.fromMakiIconId('hospital', Cesium.Color.RED, 48), function(canvas) { | ||
billboardCollection.add({ | ||
image : canvas, | ||
verticalOrigin : Cesium.VerticalOrigin.BOTTOM, | ||
position : Cesium.Cartesian3.fromDegrees(-75.1698606, 39.9211275, 0) | ||
}); | ||
}); | ||
|
||
//Set the view to the location of our pins. | ||
var camera = viewer.scene.camera; | ||
camera.lookAt(Cesium.Cartesian3.fromDegrees(-75.1703817, 39.9182722, 250), | ||
Cesium.Cartesian3.fromDegrees(-75.1703817, 39.9212722, 0), Cesium.Cartesian3.UNIT_Z);//Sandcastle_End | ||
Sandcastle.finishedLoading(); | ||
} | ||
if (typeof Cesium !== "undefined") { | ||
startup(Cesium); | ||
} else if (typeof require === "function") { | ||
require(["Cesium"], startup); | ||
} | ||
</script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.