qlanto224
qlanto224
> ➡️ [#20 (comment)](https://github.com/chenqingspring/vue-lottie/issues/20#issuecomment-658504142) 并没有什么用
maplibre-gl version:3.1.0. this my code: ```js import maplibregl from "maplibre-gl"; //@ts-ignore import { Tile3DLayer } from "@deck.gl/geo-layers"; import { Tiles3DLoader } from "@loaders.gl/3d-tiles"; import {Matrix4} from "math.gl" //@ts-ignore import {...
> The current examples we have are with gltf files. I'm not an expert of 3D formats, but if you can convert from b3dm to gltf your might be able...
when I click map , the load method trigger
> Please provide a jsbin with a reproduction. sorry, I cant provide this style. I found that when the requested layer data is too large, the request time is more...
```js import { Map } from 'maplibre-gl'; import { useEffect, useRef } from 'react'; export default () => { const mapRef = useRef(null); useEffect(() => { const style ;// this...
> I'm not aware of timeout definition. Also, without a reproduction I can't help. You don't have to provide your style, but rather something that reproduces the issue... This phenomenon...
This is a video I made of the operation. https://github.com/maplibre/maplibre-gl-js/assets/58463221/3b61a720-b11d-45c0-9aa1-7c4d3c68258b
> Can you check if the map `isLoaded` before you register the callback? It might be that when you refresh the browser and everything is cached the map initialization finishes...
I tried, but `map.loaded()` condition also can't execute. ```js // create map // dosomthing if (map.loaded()) { console.log('loaded----'+performance.now()); }else{ console.log('load'); // Execution stops at this point map.on('load', function() { console.log('load----'+performance.now());...