Release notes

A log of core changes affecting API usage.

  1. [v1.4.17] - 2020-11-02
  2. [v1.4.16] - 2020-06-01
  3. [v1.3.11] - 2020-06-01
  4. [v1.4.15] - 2020-04-10
  5. [v1.3.10] - 2020-04-10
  6. [v1.4.14] - 2020-03-26
  7. [v1.4.13] - 2020-03-03
  8. [v1.4.11] - 2020-01-24
  9. [v1.4.10] - 2019-08-06
  10. [v1.4.7] - 2019-06-05
  11. [v1.4.4-0] - 2019-05-27
  12. [v1.4.3] - 2019-05-22
  13. [v1.4.3-1] - 2019-04-24
  14. [v1.4.3-0] - 2019-04-15
  15. [v1.3.9] - 2018-10-16
  16. [v1.4.0] - 2018-10-16
  17. [v1.4.0-5] - 2018-10-02
  18. [v1.3.8] - 2018-08-09
  19. [v1.4.0-3] - 2018-06-12
  20. [v1.4.0-2] - 2018-06-06
  21. [v1.4.0-1] - 2018-05-30
  22. [v1.3.7] - 2018-05-30
  23. [v1.3.6] - 2017-09-11
  24. [v1.3.5] - 2017-09-01
  25. [v1.3.4] - 2017-07-05
  26. [v1.3.3] - 2017-06-28
  27. [v1.3.2] - 2017-06-02
  28. [v1.3.2-0] - 2017-06-01
  29. [v1.3.1] - 2017-03-24
  30. [v1.3.0] - 2017-03-14
  31. [v1.3.0-4] - 2017-03-13
  32. [v1.3.0-3] - 2017-02-28
  33. [v1.3.0-2] - 2016-11-02
  34. [v1.3.0-1] - 2016-10-11
  35. [v1.3.0-0] - 2016-09-28

The Woosmap product team regularly updates the API with new features, bug fixes, and performance improvements. You can indicate which version of the API to load within your application by specifying it in the Woosmap Locator API bootstrap request.

This changelog lists releases by date and version number, along with associated changes.

[v1.4.17] - 2020-11-02

[v1.4.16] - 2020-06-01

[v1.3.11] - 2020-06-01

[v1.4.15] - 2020-04-10

[v1.3.10] - 2020-04-10

[v1.4.14] - 2020-03-26

[v1.4.13] - 2020-03-03

[v1.4.11] - 2020-01-24

[v1.4.10] - 2019-08-06

[v1.4.7] - 2019-06-05

[v1.4.4-0] - 2019-05-27

[v1.4.3] - 2019-05-22

[v1.4.3-1] - 2019-04-24

[v1.4.3-0] - 2019-04-15

[v1.3.9] - 2018-10-16

[v1.4.0] - 2018-10-16

[v1.4.0-5] - 2018-10-02

[v1.3.8] - 2018-08-09

Fixes

[v1.4.0-3] - 2018-06-12

Fixes

[v1.4.0-2] - 2018-06-06

Fixes

[v1.4.0-1] - 2018-05-30

Features

[v1.3.7] - 2018-05-30

[v1.3.6] - 2017-09-11

[v1.3.5] - 2017-09-01

[v1.3.4] - 2017-07-05

[v1.3.3] - 2017-06-28

[v1.3.2] - 2017-06-02

[v1.3.2-0] - 2017-06-01

[v1.3.1] - 2017-03-24

[v1.3.0] - 2017-03-14

[v1.3.0-4] - 2017-03-13

[v1.3.0-3] - 2017-02-28

[v1.3.0-2] - 2016-11-02

[v1.3.0-1] - 2016-10-11

Count map loads on baseview init.

[v1.3.0-0] - 2016-09-28

Features

javascript
        var renderer = new woosmap.layers.renderers.DefaultRenderer({
    styler: new woosmap.style.Styler(),
    eventListeners: {
        'mouseover': function(store) {
            console.log('over ' + store.properties.store_id);
        },
        'mouseout': function(store) {
            console.log('out ' + store.properties.store_id);
        }
    }
}

    

Works with MarkersRenderer.

javascript
            var q = woosmap.query;

    console.log(q.and([q.or([q.F('tag', 'tag1'), q.F('tag', 'tag2')]), q.F('type', 'awesome type')]));
    // should return
    // ((tag:"tag1" OR tag:"tag2") AND type:"awesome type")

    
Deprecation notice
Deprecated objects
woosmap.TiledView
woosmap.layers.TiledDataOverlay

are replaced by setSearchParameters(searchParameters)

woosmap.layers.renderers.DefaultRenderer

superseeded by addEventListener(event:String, listener:Function)`

woosmap.layers.TiledImageLayer deprecated methods

are replaced by setSearchParameters(searchParameters)

woosmap.search.SearchParameters
Deprecated before 1.3 cycle

Theese methods or option were deprecated before 1.3 but due to the lack of public information about their future removal this will be probably postponed to the 1.4 cycle.

In any case you should avoid using deprecated methods/options.

woosmap.DataSource

are superseeded by searchStoresByParameters(searchParameters:SearchParameters, callback:Function)

SearchParameterOptions
Was this article helpful?
Have more questions? Submit a request