Mapbox 与 Babylon.js 可视化 添加路灯

我决定不从Babylonjs 基础来讲了 直接整合mapbox与babylonjs可视化来讲

我整合一个类库 后续不断更新中

  • npm i @haibalai/mapbox-babylonjs

 

初始化mapbox-babylonjs 类库, map 是mapbox.gl 的map 对象

  • import { BabylonMapManager } from "@haibalai/mapbox-babylonjs";
  • BabylonMapManager.init(map);

 

添加正方体

  • import { BabylonMapManager } from "@haibalai/mapbox-babylonjs";
  • let scene = BabylonMapManager.getScene(map);
  • const lampLight = new BABYLON.SpotLight("lampLight", BABYLON.Vector3.Zero(), new BABYLON.Vector3(0, -1, 0), Math.PI, 10, scene);
  • lampLight.diffuse = BABYLON.Color3.Yellow();
  • //shape to extrude
  • const lampShape = [];
  • for(let i = 0; i < 20; i++) {
  • lampShape.push(new BABYLON.Vector3(Math.cos(i * Math.PI / 10), Math.sin(i * Math.PI / 10), 0));
  • }
  • lampShape.push(lampShape[0]); //close shape
  • //extrusion path
  • const lampPath = [];
  • lampPath.push(new BABYLON.Vector3(0, 0, 0));
  • lampPath.push(new BABYLON.Vector3(0, 10, 0));
  • for(let i = 0; i < 20; i++) {

Mapbox 与 Babylon.js 可视化 添加路灯 - 小专栏

posted @   haibalai  阅读(64)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示