53 lines
2.5 KiB
HTML
Executable File
53 lines
2.5 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html ng-app="ngMap">
|
|
<head>
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
|
<script src="https://maps.google.com/maps/api/js?sensor=false"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.25/angular.js"></script>
|
|
<!-- build:js scripts/ng-map.min.js -->
|
|
<script src="../app/scripts/app.js"></script>
|
|
<script src="../app/scripts/directives/map_controller.js"></script>
|
|
<script src="../app/scripts/directives/map.js"></script>
|
|
<script src="../app/scripts/directives/marker.js"></script>
|
|
<script src="../app/scripts/directives/shape.js"></script>
|
|
<script src="../app/scripts/directives/info-window.js"></script>
|
|
<script src="../app/scripts/services/geo_coder.js"></script>
|
|
<script src="../app/scripts/services/navigator_geolocation.js"></script>
|
|
<script src="../app/scripts/services/attr2_options.js"></script>
|
|
<!-- endbuild -->
|
|
</head>
|
|
<body>
|
|
<div>
|
|
Info Windows<br/>
|
|
This example displays a marker at the center of Australia.
|
|
When the user clicks the marker, an info window opens.
|
|
<map center="-25.363882,131.044922" zoom="4">
|
|
<marker id="foo" position="-25.363882,131.044922"
|
|
on-click="showInfoWindow(event, 'bar')">
|
|
</marker>
|
|
<info-window id="bar" visible-on-marker="foo">
|
|
<div ng-non-bindable>
|
|
<div id="siteNotice"></div>
|
|
<h1 id="firstHeading" class="firstHeading">Uluru</h1>
|
|
<div id="bodyContent">
|
|
<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large
|
|
sandstone rock formation in the southern part of the
|
|
Northern Territory, central Australia. It lies 335 km (208 mi)
|
|
south west of the nearest large town, Alice Springs; 450 km
|
|
(280 mi) by road. Kata Tjuta and Uluru are the two major
|
|
features of the Uluru - Kata Tjuta National Park. Uluru is
|
|
sacred to the Pitjantjatjara and Yankunytjatjara, the
|
|
Aboriginal people of the area. It has many springs, waterholes,
|
|
rock caves and ancient paintings. Uluru is listed as a World
|
|
Heritage Site.</p>
|
|
<p>Attribution: Uluru, <a href="http://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">
|
|
http://en.wikipedia.org/w/index.php?title=Uluru</a>
|
|
(last visited June 22, 2009).</p>
|
|
</div>
|
|
</div>
|
|
</info-window>
|
|
</map>
|
|
</div>
|
|
</body>
|
|
</html>
|