Skip to content

Commit

Permalink
Merge pull request #122 from jonataswalker/v2.5.0
Browse files Browse the repository at this point in the history
Release v2.5.0
  • Loading branch information
jonataswalker authored Feb 21, 2017
2 parents eeb7114 + f3ded56 commit b43a3db
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 29 deletions.
23 changes: 7 additions & 16 deletions build/ol3-geocoder-debug.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* ol3-geocoder - v2.4.1
* A geocoder extension for OpenLayers 3.
* ol3-geocoder - v2.5.0
* A geocoder extension for OpenLayers.
* https://github.com/jonataswalker/ol3-geocoder
* Built: Fri Dec 30 2016 09:33:16 GMT-0200 (BRST)
* Built: Tue Feb 21 2017 08:59:29 GMT-0300 (BRT)
*/

(function (global, factory) {
Expand Down Expand Up @@ -205,20 +205,9 @@ var utils = {
flyTo: function flyTo(map, coord, duration, resolution) {
resolution = resolution || 2.388657133911758;
duration = duration || 500;

var view = map.getView();
var pan = ol.animation.pan({
duration: duration,
source: view.getCenter()
});
var zoom = ol.animation.zoom({
duration: duration,
resolution: view.getResolution()
});

map.beforeRender(pan, zoom);
view.setCenter(coord);
view.setResolution(resolution);
view.animate({ duration: duration, resolution: resolution },
{ duration: duration, center: coord });
},
randomId: function randomId(prefix) {
var id = this.now().toString(36);
Expand Down Expand Up @@ -1263,6 +1252,8 @@ var Base = (function (superclass) {
if (!(this instanceof Base)) { return new Base(); }

utils.assert(typeof type === 'string', '@param `type` should be string!');
utils.assert(type === controlType.NOMINATIM || type === controlType.REVERSE,
("@param 'type' should be '" + (controlType.NOMINATIM) + "' or \n '" + (controlType.REVERSE) + "'!"));
utils.assert(typeof options === 'object',
'@param `options` should be object!');

Expand Down
6 changes: 3 additions & 3 deletions build/ol3-geocoder.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* ol3-geocoder - v2.4.1
* A geocoder extension for OpenLayers 3.
* ol3-geocoder - v2.5.0
* A geocoder extension for OpenLayers.
* https://github.com/jonataswalker/ol3-geocoder
* Built: Fri Dec 30 2016 09:33:20 GMT-0200 (BRST)
* Built: Tue Feb 21 2017 08:59:32 GMT-0300 (BRT)
*/
.ol-geocoder.gcd-gl-container {
position: absolute;
Expand Down
Loading

0 comments on commit b43a3db

Please sign in to comment.