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

Commit b3eb0cf

Browse files
committed
MarkerManager added to Markers to delegate when a Marker is really added to a map. This makes adding in other Managers easier such as MarkerClusterer from google maps utility v3.
1 parent 5676eff commit b3eb0cf

11 files changed

+3656
-44
lines changed

Gruntfile.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ module.exports = function(grunt) {
4040
['src/coffee/*.coffee',
4141
'src/coffee/oo/ng-gmap-module.coffee',
4242
'src/coffee/oo/base-object.coffee',
43+
'src/coffee/directives/api/managers/*.coffee',
4344
'src/coffee/directives/api/utils/*.coffee',
4445
'src/coffee/directives/api/models/child/*.coffee',
4546
'src/coffee/directives/api/models/parent/*.coffee',
@@ -56,6 +57,7 @@ module.exports = function(grunt) {
5657
dist: {
5758
src: ['src/js/module.js',
5859
'tmp/output_coffee.js',
60+
'src/js/utils/markerclusterer-r438.js',
5961
'src/js/utils/LatLngArraySync.js',
6062
'src/js/utils/MapEvents.js',
6163
'src/js/controllers/polyline-display.js',
@@ -72,6 +74,7 @@ module.exports = function(grunt) {
7274
example: {
7375
src: ['src/js/module.js',
7476
'tmp/output_coffee.js',
77+
'src/js/utils/markerclusterer-r438.js',
7578
'src/js/utils/LatLngArraySync.js',
7679
'src/js/utils/MapEvents.js',
7780
'src/js/controllers/polyline-display.js',
@@ -109,7 +112,8 @@ module.exports = function(grunt) {
109112
},
110113

111114
jshint: {
112-
all: ['Gruntfile.js', 'src/js/**/*.js', 'test/js/**/*.js']
115+
all: ['Gruntfile.js', 'src/js/**/*.js', 'test/js/**/*.js'],
116+
options: {ignores: ['src/js/utils/markerclusterer-r438.js']}
113117
},
114118

115119
test: {

0 commit comments

Comments
 (0)