Skip to content

Releases: tombatossals/angular-openlayers-directive

v1.2.2

08 Oct 12:01

Choose a tag to compare

<a name"1.2.2">

1.2.2 (2015-10-08)

Bug Fixes

  • olHelpers: change ol.tilegrid.XYZ to ol.tilegrid.createXYZ (30c6d1fc)

v1.2.1

05 Oct 06:50

Choose a tag to compare

<a name"1.2.1">

1.2.1 (2015-10-05)

Bug Fixes

  • ol3:
    • downgrade to v3.8.2 of openlayers (6efedb4a)
    • reference to latest ol3 version, v3.9.0 (fd85c76d)

v1.2.0

27 Sep 16:53

Choose a tag to compare

<a name"1.2.0">

1.2.0 (2015-09-27)

Features

  • olMarkers: Added support for marker dragging (c80b7fcf)

v1.1.1

27 Sep 16:30

Choose a tag to compare

<a name"1.1.1">

1.1.1 (2015-09-27)

Bug Fixes

  • build: automatic bower and npm releases (42147db3)
  • codestyle: adjusts codestyle (b16c6712)

v1.1.0

23 Sep 21:17

Choose a tag to compare

<a name"1.1.0">

1.1.0 (2015-09-23)

Features

v1.0.1

24 Aug 06:13

Choose a tag to compare

<a name"1.0.1">

1.0.1 (2015-08-24)

Bug Fixes

  • dist: created missing dist files out of latest source (5305a335)

v1.0.0

22 Aug 13:16

Choose a tag to compare

<a name"1.0.0">

1.0.0 (2015-08-22)

Bug Fixes

  • dependencies: Explicit dependency to OpenLayers v3.4.0 (3668a7f0)
  • layers: passing a geojson object should work (da284789)
  • tests: Fix broken protractor test (b34206d5)

Features

  • ol3: compatibility with ol > 3.5 (e664a6a5)

Breaking Changes

  • ol v3.5.0 introduced
    a breaking change for this directive when it introduced a new Vector API.

It changed from this

var source = new ol.source.GeoJSON({
  url: 'features.json',
  projection: 'EPSG:3857'
});

to..

var source = new ol.source.Vector({
  url: 'features.json',
  format: new ol.format.GeoJSON()
});

This commit adjusts how the directive handles GeoJSON layers internally and thus
provides compatibility with ol3 v3.5 onwards.

(e664a6a5)

v0.1.0

21 Aug 20:51

Choose a tag to compare

<a name"0.1.0">

0.1.0 (2015-08-21)

Bug Fixes

  • dependencies: Explicit dependency to OpenLayers v3.4.0 (3668a7f0)
  • tests: Fix broken protractor test (b34206d5)