Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

OL3-Google-Maps v0.9.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@samuellapointe samuellapointe released this 11 Aug 12:37
· 279 commits to master since this release

Summary

The v0.9.0 release includes features and fixes from 7 pull requests since the v0.8.0 release. New features and improvements include:

  • Tile and Image layers will now follow the same order in Google Maps than in OpenLayers 3
  • Various bugfixes and compatibility improvements

Upgrade Notes

The watchVector option has moved. Instead of:

var olGM = new olgm.OLGoogleMaps({
    map: map,
    watchVector: false
});

It is now located in an array:

var olGM = new olgm.OLGoogleMaps({
    map: map,
    watch: {
        'vector': false
    }
});

Changelog

  • #116 - Support layer order for tile and image layers
  • #115 - Add support for transparency change on tiled layers
  • #113 - Support centered origin on tile layers
  • #112 - Add an example using the map overview control
  • #111 - Add options to watch image and tile layers
  • #110 - Support minResolution and maxResolution
  • #109 - Add basic support for map rotation