forked from tombatossals/angular-leaflet-directive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0213-layers-bingmaps-example.html
65 lines (64 loc) · 2.73 KB
/
0213-layers-bingmaps-example.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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="../bower_components/angular/angular.min.js"></script>
<script src="../bower_components/leaflet/dist/leaflet.js"></script>
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
<script src="../bower_components/leaflet-plugins/layer/tile/Bing.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("LayersBingMapsController", [ "$scope", function($scope) {
angular.extend($scope, {
bastia: {
lat: 42.7029,
lng: 9.4529,
zoom: 13
},
markers: {
bastia: {
lat: 67.6755,
lng: 9.4529
}
},
layers: {
baselayers: {
bingAerial: {
name: 'Bing Aerial',
type: 'bing',
key: 'Aj6XtE1Q1rIvehmjn2Rh1LR2qvMGZ-8vPS9Hn3jCeUiToM77JFnf-kFRzyMELDol',
layerOptions: {
type: 'Aerial'
}
},
bingRoad: {
name: 'Bing Road',
type: 'bing',
key: 'Aj6XtE1Q1rIvehmjn2Rh1LR2qvMGZ-8vPS9Hn3jCeUiToM77JFnf-kFRzyMELDol',
layerOptions: {
type: 'Road'
}
},
bingAerialWithLabels: {
name: 'Bing Aerial With Labels',
type: 'bing',
key: 'Aj6XtE1Q1rIvehmjn2Rh1LR2qvMGZ-8vPS9Hn3jCeUiToM77JFnf-kFRzyMELDol',
layerOptions: {
type: 'AerialWithLabels'
}
},
}
}
});
}]);
</script>
</head>
<body ng-controller="LayersBingMapsController">
<leaflet lf-center="bastia" layers="layers" markers="markers" width="100%" height="480px"></leaflet>
<h1>Bing maps</h1>
<p>Use the Layer Switch Control on the top rigth of the map to select another Bing Maps Layer.</p>
</body>
</html>