Skip to content

Releases: ghettovoice/vuelayers

v0.11.0-rc.5

11 Nov 20:43
Compare
Choose a tag to compare
v0.11.0-rc.5 Pre-release
Pre-release

Bugfixes

  • fix cors issue with the new vl-source-vector default loader (#105 )

Features

  • added vl-graticule component (#104 )

v0.10.22

11 Nov 21:03
Compare
Choose a tag to compare

upgrade from v0.11

  • fix cors issue with the new vl-source-vector default loader (#105 )
  • added vl-graticule  component (#104 )

v0.11.0-rc.4

10 Nov 13:41
Compare
Choose a tag to compare
v0.11.0-rc.4 Pre-release
Pre-release

Move latest features and bugfixes from v0.10.x

  • vl-layer-group (#97)
  • vl-source-stamen (#99)
  • vl-source-arcgis-rest
  • default loader for vl-source-vector

Breaking changes

  • vl-source-bing-maps was renamed to vl-source-bingmaps, and now exported as BingmapsSource (BingMapsSource was before)
<template>
  <vl-map ...>
    <vl-layer-tile>
     <vl-source-bingmaps ...></vl-source-bingmaps>
   </vl-layer-tile>
  </vl-map>
</template>

<script>
  import Vue from 'vue'
  import { Map, TileLayer, BingmapsSource } from 'vuelayers'

  Vue.use(Map)
  Vue.use(TileLayer)
  Vue.use(BingmapsSource)

  ...
</script>

v0.10.21

07 Nov 12:55
Compare
Choose a tag to compare

Improve vl-source-vector loading from URL with format.
Implemented default features loader that uses provided format with resolved data projection and view projection
for easy coordinates transforming

v0.10.20

06 Nov 12:00
Compare
Choose a tag to compare

fix typo: ol wms source has method getGetFeatureInfoUrl, not getFeatureInfoUrl (#6)

v0.10.19

03 Nov 09:11
Compare
Choose a tag to compare

New components:

  • vl-layer-group (#97)
<vl-layer-group :opacity="0.5">
  <vl-layer-tile>...</vl-layer-tile>
  <vl-layer-vector>...</vl-layer-vector>
  ...
</vl-layer-group>
  • vl-source-stamen (#99)
  • vl-source-arcgis-rest

Deprecated

  • vl-source-bing-maps is deprecated and now is an alias for vl-source-bingmaps

v0.11.0-rc.3

29 Oct 17:32
Compare
Choose a tag to compare
v0.11.0-rc.3 Pre-release
Pre-release

Changelist:

  • fixed IE issues (#91, #75, #64)
  • added vl-source-image-wms component (#92 ) (see demo for usage example)

v0.10.18

26 Oct 19:32
Compare
Choose a tag to compare

Fixed invalid imports in dist bundles

v0.10.16

26 Oct 18:34
Compare
Choose a tag to compare

WARN this version has broken import paths, use the latest please

Changelist:

  • fixed IE issues (#91, #75, #64)
  • added vl-source-image-wms component (#92 ) (see demo for usage example)

v0.11.0-rc.2

22 Oct 12:05
Compare
Choose a tag to compare
v0.11.0-rc.2 Pre-release
Pre-release

Bugs fixes

  • missed olExt, rxExt exports in UMD build