UNPKG

mohsen-angular-leaflet-directive

Version:

angular-leaflet-directive - An AngularJS directive to easily interact with Leaflet maps

56 lines (55 loc) 2.23 kB
<!DOCTYPE html> <html ng-app="demoapp"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="http://maps.google.com/maps/api/js?v=3&sensor=false"></script> <script src="../bower_components/angular/angular.min.js"></script> <script src="../bower_components/leaflet/dist/leaflet.js"></script> <script src="../bower_components/leaflet-plugins/layer/tile/Google.js"></script> <script src="../dist/angular-leaflet-directive.min.js"></script> <link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" /> <script> var app = angular.module("demoapp", ["leaflet-directive"]); app.controller("GoogleMapsController", [ "$scope", function($scope) { angular.extend($scope, { berlin: { lat: 52.52, lng: 13.40, zoom: 14 }, markers: { m1: { lat: 52.52, lng: 13.40 } }, layers: { baselayers: { googleTerrain: { name: 'Google Terrain', layerType: 'TERRAIN', type: 'google' }, googleHybrid: { name: 'Google Hybrid', layerType: 'HYBRID', type: 'google' }, googleRoadmap: { name: 'Google Streets', layerType: 'ROADMAP', type: 'google' } } } }); }]); </script> </head> <body ng-controller="GoogleMapsController"> <leaflet lf-center="berlin" lf-layers="layers" lf-markers="markers" height="480px" width="100%"></leaflet> <h1>Google maps example</h1> <p>Use the Layer Switch Control on the top rigth of the map to select another Google Maps Layer.</p> </body> </html>