37 lines
1.4 KiB
HTML
Executable File
37 lines
1.4 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.googleapis.com/maps/api/js?v=3.exp&libraries=visualization"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.25/angular.min.js"></script>
|
|
<script src="scripts/app.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/maps-engine-layer.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>
|
|
Circle Simple<br/>
|
|
This example creates circles on the map, representing
|
|
populations in North America.
|
|
<map center="42, -99" zoom="5">
|
|
<maps-engine-layer
|
|
clickable="true"
|
|
suppress-info-windows="false"
|
|
layer-id="10446176163891957399-12677872887550376890">
|
|
</maps-engine-layer>
|
|
<maps-engine-layer
|
|
layer-id="10446176163891957399-01658747114625264102">
|
|
</maps-engine-layer>
|
|
</map>
|
|
</body>
|
|
</html>
|