Skip to content
This repository was archived by the owner on Nov 30, 2018. It is now read-only.

Commit 7e3df15

Browse files
committed
Merge branch 'master' into map-types
2 parents 391fa0d + 073f007 commit 7e3df15

28 files changed

+271
-231
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
1-
<a name"3.3.2"></a>
2-
### 3.3.2 (2016-05-13)
1+
<a name"2.3.4"></a>
2+
### 2.3.4 (2016-08-15)
3+
4+
5+
#### Bug Fixes
6+
7+
* **build:** webpack-dev-server is a peer dependency of grunt-webpack ([e7631d28](https://github.com/angular-ui/angular-google-maps/commit/e7631d28))
8+
* **map-loader:** change includeScript to place maps api script tag to head element instead of bod ([8d6ed161](https://github.com/angular-ui/angular-google-maps/commit/8d6ed161))
9+
10+
11+
<a name"2.3.3"></a>
12+
### 2.3.3 (2016-05-13)
313

414

515
<a name"2.3.2"></a>

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Project No longer actively maintained
2+
3+
With angular 2 and other competing projects we have decided to announce that this project is no longer activley maintained. If someone desires to take over the project please contact any of the admins.
4+
5+
As a warning this project is not activley watched by the admins and is checked here and there to fix any major issues. Therefore if something is **major**, contact someone directly via mentioning a users name/alias (will notify the user/admin).
6+
7+
Alternatives:
8+
9+
- [angularjs-google-maps](https://github.com/allenhwkim/angularjs-google-maps)
10+
- [angular2-google-maps](https://github.com/SebastianM/angular2-google-maps)
111

212
# angular-google-maps
313
> AngularJS directives for Google Maps
@@ -54,7 +64,7 @@ meteor add angularui:angular-google-maps
5464
* Installing for [Meteor 1.3+](https://www.meteor.com/) application:
5565

5666
```shell
57-
meteor npm intsall --save angular-google-maps
67+
meteor npm install --save angular-google-maps
5868
```
5969

6070
### Building

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-google-maps",
3-
"version": "2.3.3",
3+
"version": "2.3.4",
44
"license": "MIT",
55
"main": "./dist/angular-google-maps.js",
66
"dependencies": {

dist/angular-google-maps-street-view.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*! angular-google-maps 2.3.3 2016-05-13
1+
/*! angular-google-maps 2.3.4 2016-09-19
22
* AngularJS directives for Google Maps
33
* git: https://github.com/angular-ui/angular-google-maps.git
44
*/
55
;
6-
(function( window, angular, undefined ){
6+
(function( window, angular, _, undefined ){
77
'use strict';
88
/*
99
!
@@ -109,7 +109,7 @@ return UUID;
109109
script.id = scriptId = "ui_gmap_map_load_" + (uuid.generate());
110110
script.type = 'text/javascript';
111111
script.src = getScriptUrl(options) + query;
112-
return document.body.appendChild(script);
112+
return document.head.appendChild(script);
113113
};
114114
isGoogleMapsLoaded = function() {
115115
return angular.isDefined(window.google) && angular.isDefined(window.google.maps);
@@ -674,4 +674,4 @@ StreetViewPanorama Directive to care of basic initialization of StreetViewPanora
674674
]);
675675

676676
}).call(this);
677-
}( window,angular));
677+
}( window, angular, _));

dist/angular-google-maps-street-view.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps-street-view_dev_mapped.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps-street-view_dev_mapped.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps-street-view_dev_mapped.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps-street-view_dev_mapped.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)