2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

#概要
cesiumで雨量を表示してみた。

#写真
image.png

#サンプルコード

var viewer = new Cesium.Viewer('cesiumContainer');
viewer.camera.flyTo({
    destination: Cesium.Cartesian3.fromDegrees(140.0 + 0.4, 38.0 - 1.0, 500000.0),
});
var test = new Cesium.TileCoordinatesImageryProvider({
	tilingScheme: new Cesium.WebMercatorTilingScheme()
});
var layers = viewer.imageryLayers;
var l0 = layers.addImageryProvider(new Cesium.SingleTileImageryProvider({
    url: 'http://jsrun.it/assets/S/A/h/G/SAhGj.png', 
    rectangle: Cesium.Rectangle.fromDegrees(120.0, 30.0, 160.0, 60.0)
}));
l0.alpha = 0.75;            

#成果物
http://jsdo.it/ohisama1/sQw1

以上。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?