Skip to content

Commit 62f8617

Browse files
committed
2 parents 2fd17de + 9fd2c29 commit 62f8617

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ GoogleMap AngularJS Directive
55

66
[Demo](http://ngmap.github.io)
77
[Documentation](https://rawgithub.amrom.workers.dev/allenhwkim/angularjs-google-maps/master/build/docs/index.html)
8-
**[Road Trip By StreetView](https://rawgit.com/allenhwkim/angularjs-google-maps/master/testapp/street-view_road_trip.html)**
8+
[Road Trip By StreetView](https://rawgit.com/allenhwkim/angularjs-google-maps/master/testapp/street-view_road_trip.html)
99

10-
There 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;
10+
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;
1111

1212
1. **Everything in tag and attributes.**
1313
Thus, basic users don't even have to know what Javascript is.

directives/custom-marker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
this.el = document.createElement('div');
4242
this.el.style.display = 'inline-block';
43-
Nthis.visible = true; for (var key in options) {
43+
this.visible = true; for (var key in options) {
4444
this[key] = options[key];
4545
}
4646
};

testapp/custom-marker.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html ng-app="myapp">
33
<head>
44
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
5-
<script src="http://code.angularjs.org/1.3.16/angular.js"></script>
5+
<script src="https://code.angularjs.org/1.3.16/angular.js"></script>
66
<!--
77
<script src="../build/scripts/ng-map.min.js"></script>
88
-->

0 commit comments

Comments
 (0)