You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
here is already [one](https://github.com/nlaplante/angular-google-maps) for this. However, I found myself doing totally different approach for this purpose than the existing one, such as;
12
+
There is already [one](https://github.com/nlaplante/angular-google-maps) for this. However, I found myself doing totally different approach than the existing one, such as;
13
13
14
14
1.**Everything in tag and attributes.**
15
15
Thus, basic users don't even have to know what Javascript is.
16
+
16
17
2.**Expose all original Google Maps V3 api to the user.**
17
18
No hiding, no wraping, or whatsoever.
18
19
By doing so, programmers don't need to learn how to use this module.
@@ -28,7 +29,6 @@ For Bower users,
28
29
29
30
1. Include `ng-map.min.js` as well as google maps.
-**gulp build** to build the javascript & doc files in the /build folder & run the unit tests.
124
+
-**gulp clean** to cleanup the repository from a previous build ? does this work ?
125
+
-**gulp test** to run the Karma unit test suite.
126
+
-**gulp test-e2e** to run the Protractor test suite. For the first test run, you may need to update the protractor webdriver manager. It will show the command on screen if this is required (node_modules/gulp-protractor/node_modules/protractor/bin/webdriver-manager update).
127
+
-**gulp testapp-server** will start a web server for the testapp on http://localhost:8888
128
+
78
129
Release Notes
79
-
---------------
130
+
===============
80
131
**1.13.0**
81
132
82
133
* New directive `custom-marker`
@@ -130,230 +181,7 @@ Release Notes
130
181
* marker directive can have icon attribute as JSON
131
182
* map with init-event attribute for initialization by an event
132
183
133
-
**1.0.0 (covers all official google examples using directives).**
134
-
135
-
* marker
136
-
* shapes
137
-
138
-
* circle
139
-
* polyline
140
-
* polygon
141
-
* rectangle
142
-
* image
143
-
144
-
* layers
145
-
146
-
* traffic-layer
147
-
* transit-layer
148
-
* bicycling-layer
149
-
* dynamic-maps-engine-layer
150
-
* fusion-tables-layer
151
-
* heatmap-layer
152
-
* kml-layer
153
-
* maps-engine-layer
154
-
155
-
* custom-control
156
-
* info-window
157
-
* map-data
158
-
* map-type
159
-
* overlay-map-type
160
-
161
-
Directives
162
-
----------
163
-
164
-
#### <map .. >
165
-
166
-
As defined on [MapOptions](https://developers.google.com/maps/documentation/javascript/reference#MapOptions), you can add any attributes, and events starting with `on-`. Please note that event value must be a function.
167
-
168
-
Example:
169
-
170
-
<map zoom="11"
171
-
center="[40.74, -74.18]"
172
-
disable-default-u-i="true"
173
-
disable-double-click-zoom="true"
174
-
draggable="false"
175
-
draggable-cursor="help"
176
-
dragging-cursor="move"
177
-
keyboard-shortcuts="false"
178
-
max-zoom="12"
179
-
min-zoom="8"
180
-
tilt="45"
181
-
map-type-id="TERRAIN"
182
-
zoom-to-include-markers="auto"
183
-
>
184
-
</map>
185
-
i.e. < zoom="11" center="[40.74, -74.18]"
186
-
187
-
zoom-to-include-markers has two options "true" or "auto".
188
-
Use "true" if your markers do not change after the map is rendered.
189
-
Use "auto" if you want the map to auto zoom when markers are added or removed.
190
-
Example [zoom-to-include-markers](https://rawgit.com/allenhwkim/angularjs-google-maps/master/testapp/map_zoom_to_include_markers.html)
191
-
192
-
#### <marker .. >
193
-
194
-
As defined on [MarkerOptions](https://developers.google.com/maps/documentation/javascript/reference#MarkerOptions), you can add any attributes, and events starting with `on-`.
-[Starbucks World Wide](https://rawgit.com/allenhwkim/angularjs-google-maps/master/testapp/map_app.html)
343
-
344
-
[Contributors](CONTRIBUTORS.md)
345
-
===============================
346
-
347
-
Contributing
348
-
============
349
-
- Clone the repository from github
350
-
- Change to the folder dowloaded
351
-
-**npm install** to install the build tools
352
-
-**gulp build** to build the javascript & doc files in the /build folder & run the unit tests.
353
-
-**gulp clean** to cleanup the repository from a previous build ? does this work ?
354
-
-**gulp test** to run the Karma unit test suite.
355
-
-**gulp test-e2e** to run the Protractor test suite. For the first test run, you may need to update the protractor webdriver manager. It will show the command on screen if this is required (node_modules/gulp-protractor/node_modules/protractor/bin/webdriver-manager update).
356
-
-**gulp testapp-server** will start a web server for the testapp on http://localhost:8888
184
+
**1.0.0 (covers All official google maps v3 examples using directives).**
0 commit comments