FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
angular-google-maps/example/dynamic-map-height.html at master · angular-ui/angular-google-maps · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Nov 30, 2018. It is now read-only.
angular-ui
/
angular-google-maps
Public archive
Notifications
You must be signed in to change notification settings
Fork
1.1k
Star
2.5k
Code
Issues
337
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
angular-google-maps
/
example
/
dynamic-map-height.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
44 lines (39 loc) · 1.8 KB
Breadcrumbs
angular-google-maps
/
example
/
dynamic-map-height.html
Copy path
File metadata and controls
44 lines (39 loc) · 1.8 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html
>
<
html
ng-app
="
app
"
>
<
head
>
<
link
rel
="
stylesheet
"
href
="
//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css
"
>
<
link
rel
="
stylesheet
"
href
="
assets/stylesheets/example.css
"
>
<
link
rel
="
stylesheet
"
href
="
assets/stylesheets/dynamic-height.css
"
>
<
script
src
="
../website_libs/dev_deps.js
"
>
</
script
>
<
script
src
="
//maps.googleapis.com/maps/api/js
"
>
</
script
>
<
script
data-require
="
angular.js@1.2.x
"
src
="
https://code.angularjs.org/1.2.26/angular.js
"
>
</
script
>
<
script
src
="
//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.underscore.js
"
>
</
script
>
<
script
src
="
http://cdn.rawgit.com/nmccready/angular-simple-logger/0.0.1/dist/index.js
"
>
</
script
>
<
script
src
="
../dist/angular-google-maps.js
"
>
</
script
>
<
script
src
="
assets/scripts/controllers/dynamic-map-height.js
"
>
</
script
>
<
title
>
Map
</
title
>
</
head
>
<
body
>
<
div
data-ng-controller
="
ctrl
"
class
="
middle
"
>
<
ui-gmap-google-map
id
="
map
"
center
="
map.center
"
pan
="
map.pan
"
zoom
="
map.zoom
"
draggable
="
true
"
refresh
="
map.refresh
"
options
="
map.options
"
events
="
map.events
"
bounds
="
map.bounds
"
>
<
ui-gmap-map-control
template
="
clear.tpl.html
"
position
="
top-right
"
index
="
1
"
controller
="
mapWidgetCtrl
"
>
</
ui-gmap-map-control
>
<
ui-gmap-map-control
position
="
top-right
"
index
="
1
"
>
<
div
ng-controller
="
mapWidgetCtrl
"
>
<
button
class
="
btn btn-lg btn-primary
"
ng-click
="
drawWidget.controlClick()
"
>
{{drawWidget.controlText}}
</
button
>
</
div
>
</
ui-gmap-map-control
>
<
ui-gmap-free-draw-polygons
polygons
="
map.polys
"
draw
="
map.draw
"
>
</
ui-gmap-free-draw-polygons
>
</
ui-gmap-google-map
>
<
ul
>
<
li
ng-repeat
="
p in map.polys
"
>
{{p.getPath()}}
</
li
>
</
ul
>
</
div
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL