ngmap
Version:
The Simplest AngularJS Google Maps V3 Directive
18 lines (17 loc) • 449 B
HTML
<html ng-app="ngMap">
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script src="script-tags-for-development.js"></script>
</head>
<body>
<div>
<ng-map zoom="4" center="-28, 137.883">
<map-data
set-style="{fillColor: 'green', strokeWeight: 1}"
load-geo-json="https://storage.googleapis.com/maps-devrel/google.json">
</map-data>
</ng-map>
</div>
</body>
</html>