更改OpenLayers5中的示例

时间:2018-11-30 11:29:09

标签: openlayers-5

一些问题:

如果我下载https://github.com/openlayers/openlayers/releases/download/v5.3.0/v5.3.0.zip

我希望使用“绘制和修改特征示例” https://openlayers.org/en/latest/examples/draw-and-modify-features.html

在编写示例的过程中,代码看起来像

  var raster = new TileLayer({
    source: new OSM()
  });

  var source = new VectorSource();
  var vector = new VectorLayer({
    source: source,
    style: new Style({
      fill: new Fill({
        color: 'rgba(255, 255, 255, 0.2)'
      }),
      stroke: new Stroke({
        color: '#ffcc33',
        width: 2

.... etc。等

但是,如果我打开draw-and-modify-feature.js,则代码完全不同。 哪种类型是draw-and-modify-feature.js.map?

我开始意识到使用OL发生了某些完全改变吗?

我想知道:如何更改上述命名示例的代码? 是否需要像Java那样的“编译”代码或类似的东西? 这里发生了什么:http://openlayers.org/en/latest/doc/tutorials/bundle.html

几年前,可以通过编辑器更改html / JavaScript代码,然后... 这行不通了吗?有人可以帮忙吗?

0 个答案:

没有答案