forked from davidepedone/angular-google-places-map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathempty.html
More file actions
23 lines (20 loc) · 725 Bytes
/
empty.html
File metadata and controls
23 lines (20 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html ng-app="sample">
<head lang="it">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sample Page</title>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true&libraries=places"></script>
<script src="../bower_components/angular/angular.js"></script>
<script src="../dist/js/ngplacesmap.min.js"></script>
<link href="../dist/css/ngplacesmap.min.css" media="all" rel="stylesheet" />
</head>
<body>
<h1>Sample Page</h1>
<places-map></places-map>
<script>
angular.module('sample', ['ngPlacesMap']);
</script>
</body>
</html>