美文网首页
Uncaught TypeError: imageStyle.g

Uncaught TypeError: imageStyle.g

作者: 奔跑的痕迹 | 来源:发表于2020-04-12 09:48 被阅读0次
错误提示

这个错误也是遇得到哟,柑橘自己好无辜呀,我哪里错了,找了半天原来还是自己找的错误


    import Circle from 'ol/geom/Circle';

    feature.setStyle(new Style({
          image: new Circle({
            radius: num,
            fill: new Fill({
              color: colorVal
            }),
            stroke: new Stroke({
              color: 'white',
              width: 1
            })
          })
        })
    );

且,原来是谁引错了一个类,哎。

直接
import Circle from 'ol/geom/Circle';
改为
import {Circle as StyleCircle} from 'ol/style';

记录哈,帮助查找错误伙伴时缩小范围

相关文章

网友评论

      本文标题:Uncaught TypeError: imageStyle.g

      本文链接:https://www.haomeiwen.com/subject/syqvmhtx.html